diff --git a/src/api-impl-jni/app/android_app_Activity.c b/src/api-impl-jni/app/android_app_Activity.c
index 10bc68f0..31daf379 100644
--- a/src/api-impl-jni/app/android_app_Activity.c
+++ b/src/api-impl-jni/app/android_app_Activity.c
@@ -109,7 +109,7 @@ void current_activity_back_pressed(void){
jmethodID current_activity_on_back_pressed_method_id = (*env) ->GetMethodID(env, current_activity_class, "onBackPressed", "()V");
if((*env)->ExceptionCheck(env))
(*env)->ExceptionDescribe(env);
-
+
// Either a new activity was added to the backlog or the current activity's onBackPressed method was changed
if(g_list_length(activity_backlog) > 1 || handle_cache.activity.onBackPressed != current_activity_on_back_pressed_method_id){
(*env)->CallVoidMethod(env, activity_current, handle_cache.activity.onBackPressed);
@@ -222,7 +222,7 @@ static void file_dialog_callback(GObject* source_object, GAsyncResult* res, gpoi
if (file) {
char *uri = g_file_get_uri(file);
-
+
(*env)->CallVoidMethod(env, d->activity, fileChooserResultCallback, d->request_code, RESULT_OK, d->action, _JSTRING(uri));
if ((*env)->ExceptionCheck(env))
(*env)->ExceptionDescribe(env);
diff --git a/src/api-impl-jni/database/android_database_SQLiteCommon.c b/src/api-impl-jni/database/android_database_SQLiteCommon.c
index bb63e148..83cf7101 100644
--- a/src/api-impl-jni/database/android_database_SQLiteCommon.c
+++ b/src/api-impl-jni/database/android_database_SQLiteCommon.c
@@ -14,11 +14,11 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
/*
-** Rewritten from C++ to C for Android Translation Layer:
+** Rewritten from C++ to C for Android Translation Layer:
*/
#include
@@ -128,7 +128,7 @@ void throw_sqlite3_exception_errcode_message(JNIEnv* env, int errcode,
if (sqlite3Message) {
char *zFullmsg = sqlite3_mprintf(
- "%s (code %d)%s%s", sqlite3Message, errcode,
+ "%s (code %d)%s%s", sqlite3Message, errcode,
(message ? ": " : ""), (message ? message : "")
);
printf("throwing new %s\n", exceptionClass);
diff --git a/src/api-impl-jni/database/android_database_SQLiteCommon.h b/src/api-impl-jni/database/android_database_SQLiteCommon.h
index 4082e771..0a9562b4 100644
--- a/src/api-impl-jni/database/android_database_SQLiteCommon.h
+++ b/src/api-impl-jni/database/android_database_SQLiteCommon.h
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl-jni/database/android_database_SQLiteConnection.c b/src/api-impl-jni/database/android_database_SQLiteConnection.c
index 5ecbdc09..1f5e126c 100644
--- a/src/api-impl-jni/database/android_database_SQLiteConnection.c
+++ b/src/api-impl-jni/database/android_database_SQLiteConnection.c
@@ -14,11 +14,11 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
/*
-** Rewritten from C++ to C for Android Translation Layer:
+** Rewritten from C++ to C for Android Translation Layer:
*/
#include
@@ -69,14 +69,14 @@ static const int BUSY_TIMEOUT_MS = 2500;
/*
** This function is a collation sequence callback equivalent to the built-in
-** BINARY sequence.
+** BINARY sequence.
**
** Stock Android uses a modified version of sqlite3.c that calls out to a module
** named "sqlite3_android" to add extra built-in collations and functions to
** all database handles. Specifically, collation sequence "LOCALIZED". For now,
** this module does not include sqlite3_android (since it is difficult to build
** with the NDK only). Instead, this function is registered as "LOCALIZED" for all
-** new database handles.
+** new database handles.
*/
static int coll_localized(
void *not_used,
@@ -585,17 +585,17 @@ static jboolean setWindowNumColumns(
}
/*
-** This method has been rewritten for org.sqlite.database.*. The original
+** This method has been rewritten for org.sqlite.database.*. The original
** android implementation used the C++ interface to populate a CursorWindow
** object. Since the NDK does not export this interface, we invoke the Java
** interface using standard JNI methods to do the same thing.
**
-** This function executes the SQLite statement object passed as the 4th
+** This function executes the SQLite statement object passed as the 4th
** argument and copies one or more returned rows into the CursorWindow
-** object passed as the 5th argument. The set of rows copied into the
+** object passed as the 5th argument. The set of rows copied into the
** CursorWindow is always contiguous.
**
-** The only row that *must* be copied into the CursorWindow is row
+** The only row that *must* be copied into the CursorWindow is row
** iRowRequired. Ideally, all rows from iRowStart through to the end
** of the query are copied into the CursorWindow. If this is not possible
** (CursorWindow objects have a finite capacity), some compromise position
@@ -607,11 +607,11 @@ static jboolean setWindowNumColumns(
**
** where iStart is the index of the first row copied into the CursorWindow.
** If the countAllRows argument is true, nRow is the total number of rows
-** returned by the query. Otherwise, nRow is one greater than the index of
+** returned by the query. Otherwise, nRow is one greater than the index of
** the last row copied into the CursorWindow.
*/
JNIEXPORT jlong JNICALL Java_android_database_sqlite_SQLiteConnection_nativeExecuteForCursorWindow(
- JNIEnv *env,
+ JNIEnv *env,
jclass clazz,
jlong connectionPtr, /* Pointer to SQLiteConnection C++ object */
jlong statementPtr, /* Pointer to sqlite3_stmt object */
diff --git a/src/api-impl-jni/database/android_database_SQLiteGlobal.c b/src/api-impl-jni/database/android_database_SQLiteGlobal.c
index a0845943..384b4029 100644
--- a/src/api-impl-jni/database/android_database_SQLiteGlobal.c
+++ b/src/api-impl-jni/database/android_database_SQLiteGlobal.c
@@ -14,11 +14,11 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
/*
-** Rewritten from C++ to C for Android Translation Layer:
+** Rewritten from C++ to C for Android Translation Layer:
*/
#include
diff --git a/src/api-impl-jni/graphics/android_graphics_Path.c b/src/api-impl-jni/graphics/android_graphics_Path.c
index 44a72df7..f18c4b3d 100644
--- a/src/api-impl-jni/graphics/android_graphics_Path.c
+++ b/src/api-impl-jni/graphics/android_graphics_Path.c
@@ -146,7 +146,7 @@ JNIEXPORT jlong JNICALL Java_android_graphics_Path_native_1transform(JNIEnv *env
JNIEXPORT void JNICALL Java_android_graphics_Path_native_1add_1rect(JNIEnv *env, jclass this, jlong builder_ptr, jfloat left, jfloat top, jfloat right, jfloat bottom)
{
- gsk_path_builder_add_rect(_PTR(builder_ptr), &GRAPHENE_RECT_INIT(left, top, right-left, bottom-top));
+ gsk_path_builder_add_rect(_PTR(builder_ptr), &GRAPHENE_RECT_INIT(left, top, right-left, bottom-top));
}
JNIEXPORT void JNICALL Java_android_graphics_Path_native_1get_1bounds(JNIEnv *env, jclass this, jlong path_ptr, jobject bounds)
diff --git a/src/api-impl-jni/native_activity.h b/src/api-impl-jni/native_activity.h
index 2d7d08a9..27382724 100644
--- a/src/api-impl-jni/native_activity.h
+++ b/src/api-impl-jni/native_activity.h
@@ -78,17 +78,17 @@ typedef struct ANativeActivity {
* Path to this application's internal data directory.
*/
const char* internalDataPath;
-
+
/**
* Path to this application's external (removable/mountable) data directory.
*/
const char* externalDataPath;
-
+
/**
* The platform's SDK version code.
*/
int32_t sdkVersion;
-
+
/**
* This is the native instance of the application. It is not used by
* the framework, but can be set by the application to its own instance
@@ -122,13 +122,13 @@ typedef struct ANativeActivityCallbacks {
* for more information.
*/
void (*onStart)(ANativeActivity* activity);
-
+
/**
* NativeActivity has resumed. See Java documentation for Activity.onResume()
* for more information.
*/
void (*onResume)(ANativeActivity* activity);
-
+
/**
* Framework is asking NativeActivity to save its current instance state.
* See Java documentation for Activity.onSaveInstanceState() for more
@@ -139,19 +139,19 @@ typedef struct ANativeActivityCallbacks {
* entities (pointers to memory, file descriptors, etc).
*/
void* (*onSaveInstanceState)(ANativeActivity* activity, size_t* outSize);
-
+
/**
* NativeActivity has paused. See Java documentation for Activity.onPause()
* for more information.
*/
void (*onPause)(ANativeActivity* activity);
-
+
/**
* NativeActivity has stopped. See Java documentation for Activity.onStop()
* for more information.
*/
void (*onStop)(ANativeActivity* activity);
-
+
/**
* NativeActivity is being destroyed. See Java documentation for Activity.onDestroy()
* for more information.
@@ -163,7 +163,7 @@ typedef struct ANativeActivityCallbacks {
* for example, to pause a game when it loses input focus.
*/
void (*onWindowFocusChanged)(ANativeActivity* activity, int hasFocus);
-
+
/**
* The drawing window for this native activity has been created. You
* can use the given native window object to start drawing.
@@ -194,13 +194,13 @@ typedef struct ANativeActivityCallbacks {
* returning from here.
*/
void (*onNativeWindowDestroyed)(ANativeActivity* activity, ANativeWindow* window);
-
+
/**
* The input queue for this native activity's window has been created.
* You can use the given input queue to start retrieving input events.
*/
void (*onInputQueueCreated)(ANativeActivity* activity, AInputQueue* queue);
-
+
/**
* The input queue for this native activity's window is being destroyed.
* You should no longer try to reference this object upon returning from this
@@ -310,4 +310,3 @@ void ANativeActivity_hideSoftInput(ANativeActivity* activity, uint32_t flags);
#endif
#endif // ANDROID_NATIVE_ACTIVITY_H
-
diff --git a/src/api-impl-jni/views/AndroidLayout.h b/src/api-impl-jni/views/AndroidLayout.h
index 7fc1461e..8fb9ae13 100644
--- a/src/api-impl-jni/views/AndroidLayout.h
+++ b/src/api-impl-jni/views/AndroidLayout.h
@@ -29,4 +29,4 @@ void android_layout_set_params(AndroidLayout *layout, int width, int height);
void widget_set_needs_allocation(GtkWidget *widget);
-#endif // ANDROID_LAYOUT_H
\ No newline at end of file
+#endif // ANDROID_LAYOUT_H
diff --git a/src/api-impl-jni/views/android_view_View.c b/src/api-impl-jni/views/android_view_View.c
index 49e6889c..f6e4eea3 100644
--- a/src/api-impl-jni/views/android_view_View.c
+++ b/src/api-impl-jni/views/android_view_View.c
@@ -181,7 +181,7 @@ static gboolean on_event(GtkEventControllerLegacy *event_controller, GdkEvent *e
pointers[id].index = pointer_index;
pointers[id].id = id;
}
-
+
pointers[id].coord_x = x;
pointers[id].coord_y = y;
pointers[id].raw_x = x;
diff --git a/src/api-impl-jni/widgets/WrapperWidget.c b/src/api-impl-jni/widgets/WrapperWidget.c
index e2fef601..2e8aad4a 100644
--- a/src/api-impl-jni/widgets/WrapperWidget.c
+++ b/src/api-impl-jni/widgets/WrapperWidget.c
@@ -34,7 +34,7 @@ static void wrapper_widget_get_property (GObject *object, guint property_id, GVa
switch ((WrapperWidgetProperty) property_id)
{
- case ATL_ID:
+ case ATL_ID:
{
jint id_jint = (*env)->CallIntMethod(env, jobj, handle_cache.view.getId);
if((*env)->ExceptionCheck(env))
@@ -83,7 +83,7 @@ static void wrapper_widget_get_property (GObject *object, guint property_id, GVa
(*env)->ReleaseStringUTFChars(env, super_classes_names_obj, super_classes_names);
break;
}
-
+
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
@@ -220,13 +220,13 @@ static void wrapper_widget_class_init(WrapperWidgetClass *class)
object_class->set_property = wrapper_widget_set_property;
object_class->get_property = wrapper_widget_get_property;
-
+
// According to testing, these properties are not evaluated till we open the GtkInspector
wrapper_widget_properties[ATL_ID] = g_param_spec_string("ATL-id", "ATL: ID", "ID of the component", "", G_PARAM_READABLE);
wrapper_widget_properties[ATL_ID_NAME] = g_param_spec_string("ATL-id-name", "ATL: ID name", "Name of the ID of the component", "", G_PARAM_READABLE);
wrapper_widget_properties[ATL_CLASS_NAME] = g_param_spec_string("ATL-class-name", "ATL: Class name", "Name of the class of the component", "", G_PARAM_READABLE);
wrapper_widget_properties[ATL_SUPER_CLASS_NAMES] = g_param_spec_string("ATL-superclasses-names", "ATL: Super classes names", "Names of all the superclasses of the component class", "", G_PARAM_READABLE);
-
+
g_object_class_install_properties (object_class, N_PROPERTIES, wrapper_widget_properties);
}
diff --git a/src/api-impl-jni/widgets/android_webkit_WebView.c b/src/api-impl-jni/widgets/android_webkit_WebView.c
index 92e7fc79..33dcb5f7 100644
--- a/src/api-impl-jni/widgets/android_webkit_WebView.c
+++ b/src/api-impl-jni/widgets/android_webkit_WebView.c
@@ -38,11 +38,11 @@ static void web_view_load_changed(WebKitWebView *web_view, WebKitLoadEvent load_
JNIEXPORT jlong JNICALL Java_android_webkit_WebView_native_1constructor(JNIEnv *env, jobject this, jobject context, jobject attrs)
{
- /*
- * many apps use webview just for fingerprinting or displaying ads, which seems like
- * a waste of resources even if we deal with fingerprinting and ads in some other way
- * in the future.
- */
+ /*
+ * many apps use webview just for fingerprinting or displaying ads, which seems like
+ * a waste of resources even if we deal with fingerprinting and ads in some other way
+ * in the future.
+ */
if(!getenv("ATL_UGLY_ENABLE_WEBVIEW"))
return Java_android_view_View_native_1constructor(env, this, context, attrs);
diff --git a/src/api-impl/android/accounts/AccountManager.java b/src/api-impl/android/accounts/AccountManager.java
index 5780ca7a..66537e67 100644
--- a/src/api-impl/android/accounts/AccountManager.java
+++ b/src/api-impl/android/accounts/AccountManager.java
@@ -4,7 +4,7 @@ import android.content.Context;
import android.os.Bundle;
public class AccountManager {
-
+
public static AccountManager get(Context context) {
return new AccountManager();
}
diff --git a/src/api-impl/android/animation/AnimatorInflater.java b/src/api-impl/android/animation/AnimatorInflater.java
index 8c8eaf34..7a6d1a92 100644
--- a/src/api-impl/android/animation/AnimatorInflater.java
+++ b/src/api-impl/android/animation/AnimatorInflater.java
@@ -11,5 +11,5 @@ public class AnimatorInflater {
public static StateListAnimator loadStateListAnimator(Context context, int resId) {
return new StateListAnimator();
}
-
+
}
diff --git a/src/api-impl/android/animation/ArgbEvaluator.java b/src/api-impl/android/animation/ArgbEvaluator.java
index e7787c31..ee988386 100644
--- a/src/api-impl/android/animation/ArgbEvaluator.java
+++ b/src/api-impl/android/animation/ArgbEvaluator.java
@@ -1,5 +1,5 @@
package android.animation;
public class ArgbEvaluator {
-
+
}
diff --git a/src/api-impl/android/animation/LayoutTransition.java b/src/api-impl/android/animation/LayoutTransition.java
index 276ef5c8..a43e1fd3 100644
--- a/src/api-impl/android/animation/LayoutTransition.java
+++ b/src/api-impl/android/animation/LayoutTransition.java
@@ -1,7 +1,7 @@
package android.animation;
public class LayoutTransition {
-
+
public void enableTransitionType(int transitionType) {}
public void setStartDelay(int transitionType, long startDelay) {}
diff --git a/src/api-impl/android/annotation/SystemApi.java b/src/api-impl/android/annotation/SystemApi.java
index a01e4c50..718c8035 100644
--- a/src/api-impl/android/annotation/SystemApi.java
+++ b/src/api-impl/android/annotation/SystemApi.java
@@ -1,5 +1,5 @@
package android.annotation;
public @interface SystemApi {
-
+
}
diff --git a/src/api-impl/android/app/Activity.java b/src/api-impl/android/app/Activity.java
index 92040f2a..2e52126a 100644
--- a/src/api-impl/android/app/Activity.java
+++ b/src/api-impl/android/app/Activity.java
@@ -83,7 +83,7 @@ public class Activity extends ContextThemeWrapper implements Window.Callback, La
*
* @param className class name of activity or null
* @return instance of main activity class
- * @throws Exception
+ * @throws Exception
*/
private static Activity createMainActivity(String className, long native_window, String uriString) throws Exception {
Uri uri = uriString != null ? Uri.parse(uriString) : null;
diff --git a/src/api-impl/android/app/DownloadManager.java b/src/api-impl/android/app/DownloadManager.java
index 473deee2..8e1b979a 100644
--- a/src/api-impl/android/app/DownloadManager.java
+++ b/src/api-impl/android/app/DownloadManager.java
@@ -1,5 +1,5 @@
package android.app;
public class DownloadManager {
-
+
}
diff --git a/src/api-impl/android/app/SearchManager.java b/src/api-impl/android/app/SearchManager.java
index 69b7e627..1cd34cff 100644
--- a/src/api-impl/android/app/SearchManager.java
+++ b/src/api-impl/android/app/SearchManager.java
@@ -1,5 +1,5 @@
package android.app;
public class SearchManager {
-
+
}
diff --git a/src/api-impl/android/app/UiModeManager.java b/src/api-impl/android/app/UiModeManager.java
index 0cd11875..be664d35 100644
--- a/src/api-impl/android/app/UiModeManager.java
+++ b/src/api-impl/android/app/UiModeManager.java
@@ -3,7 +3,7 @@ package android.app;
import android.content.res.Configuration;
public class UiModeManager {
-
+
public int getCurrentModeType() {
return Configuration.UI_MODE_TYPE_NORMAL;
}
diff --git a/src/api-impl/android/app/WallpaperManager.java b/src/api-impl/android/app/WallpaperManager.java
index 249228a0..7167c85b 100644
--- a/src/api-impl/android/app/WallpaperManager.java
+++ b/src/api-impl/android/app/WallpaperManager.java
@@ -14,5 +14,5 @@ public class WallpaperManager {
}
private static native void set_bitmap(long texture);
-
+
}
diff --git a/src/api-impl/android/app/admin/DevicePolicyManager.java b/src/api-impl/android/app/admin/DevicePolicyManager.java
index fa64c941..57ec1c05 100644
--- a/src/api-impl/android/app/admin/DevicePolicyManager.java
+++ b/src/api-impl/android/app/admin/DevicePolicyManager.java
@@ -1,5 +1,5 @@
package android.app.admin;
public class DevicePolicyManager {
-
+
}
diff --git a/src/api-impl/android/app/job/JobWorkItem.java b/src/api-impl/android/app/job/JobWorkItem.java
index 50c5dde7..43478619 100644
--- a/src/api-impl/android/app/job/JobWorkItem.java
+++ b/src/api-impl/android/app/job/JobWorkItem.java
@@ -6,4 +6,3 @@ final public class JobWorkItem {
public JobWorkItem(Intent intent) {
}
}
-
diff --git a/src/api-impl/android/bluetooth/BluetoothProfile.java b/src/api-impl/android/bluetooth/BluetoothProfile.java
index 42eec903..6b1a61d9 100644
--- a/src/api-impl/android/bluetooth/BluetoothProfile.java
+++ b/src/api-impl/android/bluetooth/BluetoothProfile.java
@@ -1,6 +1,6 @@
package android.bluetooth;
public class BluetoothProfile {
-
+
public interface ServiceListener {}
}
diff --git a/src/api-impl/android/content/ClipData.java b/src/api-impl/android/content/ClipData.java
index 41b70582..e6c85b25 100644
--- a/src/api-impl/android/content/ClipData.java
+++ b/src/api-impl/android/content/ClipData.java
@@ -3,7 +3,7 @@ package android.content;
public class ClipData {
String text;
-
+
public static ClipData newPlainText(CharSequence label, CharSequence text) {
ClipData clip = new ClipData();
clip.text = text.toString();
diff --git a/src/api-impl/android/content/IntentFilter.java b/src/api-impl/android/content/IntentFilter.java
index c5aa4e2f..7d4fae06 100644
--- a/src/api-impl/android/content/IntentFilter.java
+++ b/src/api-impl/android/content/IntentFilter.java
@@ -10,7 +10,7 @@ import android.net.Uri;
import java.util.Iterator;
public class IntentFilter {
-
+
private List actions = new ArrayList<>();
private Set categories = new HashSet<>();
private List dataSchemes = new ArrayList<>();
diff --git a/src/api-impl/android/content/pm/PackageManager.java b/src/api-impl/android/content/pm/PackageManager.java
index f335c7bb..d5a34b41 100644
--- a/src/api-impl/android/content/pm/PackageManager.java
+++ b/src/api-impl/android/content/pm/PackageManager.java
@@ -1674,7 +1674,7 @@ public class PackageManager {
* to modify the data returned.
*
* @return ProviderInfo containing information about the service.
- * @throws Exception
+ * @throws Exception
*
* @see #GET_META_DATA
* @see #GET_SHARED_LIBRARY_FILES
@@ -2402,7 +2402,7 @@ public class PackageManager {
*
* @return ContentProviderInfo Information about the provider, if found,
* else null.
- * @throws Exception
+ * @throws Exception
*/
public ProviderInfo resolveContentProvider(String authority, int flags) {
for (PackageParser.Provider p : Context.pkg.providers) {
diff --git a/src/api-impl/android/content/pm/PackageUserState.java b/src/api-impl/android/content/pm/PackageUserState.java
index 3b39572d..6d813605 100644
--- a/src/api-impl/android/content/pm/PackageUserState.java
+++ b/src/api-impl/android/content/pm/PackageUserState.java
@@ -56,4 +56,4 @@ public class PackageUserState {
? new HashSet(o.enabledComponents)
: null;
}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/database/AbstractCursor.java b/src/api-impl/android/database/AbstractCursor.java
index 4c6c467b..6a5eabe3 100644
--- a/src/api-impl/android/database/AbstractCursor.java
+++ b/src/api-impl/android/database/AbstractCursor.java
@@ -481,4 +481,4 @@ public abstract class AbstractCursor implements CrossProcessCursor {
}
}
}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/database/AbstractWindowedCursor.java b/src/api-impl/android/database/AbstractWindowedCursor.java
index 5fe07a81..5dd144c7 100644
--- a/src/api-impl/android/database/AbstractWindowedCursor.java
+++ b/src/api-impl/android/database/AbstractWindowedCursor.java
@@ -133,7 +133,7 @@ public abstract class AbstractWindowedCursor extends AbstractCursor {
@Override
protected void checkPosition() {
super.checkPosition();
-
+
if (mWindow == null) {
throw new /*StaleDataException*/RuntimeException("Attempting to access a closed CursorWindow." +
"Most probable cause: cursor is deactivated prior to calling this method.");
@@ -206,4 +206,4 @@ public abstract class AbstractWindowedCursor extends AbstractCursor {
super.onDeactivateOrClose();
closeWindow();
}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/database/CharArrayBuffer.java b/src/api-impl/android/database/CharArrayBuffer.java
index 5da21032..7b54a657 100644
--- a/src/api-impl/android/database/CharArrayBuffer.java
+++ b/src/api-impl/android/database/CharArrayBuffer.java
@@ -23,11 +23,11 @@ public final class CharArrayBuffer {
public CharArrayBuffer(int size) {
data = new char[size];
}
-
+
public CharArrayBuffer(char[] buf) {
data = buf;
}
-
+
public char[] data; // In and out parameter
public int sizeCopied; // Out parameter
}
diff --git a/src/api-impl/android/database/ContentObservable.java b/src/api-impl/android/database/ContentObservable.java
index 463915b4..bafdbbca 100644
--- a/src/api-impl/android/database/ContentObservable.java
+++ b/src/api-impl/android/database/ContentObservable.java
@@ -88,4 +88,4 @@ public class ContentObservable extends Observable {
}
}
}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/database/ContentObserver.java b/src/api-impl/android/database/ContentObserver.java
index b99be4cd..dfdbc977 100644
--- a/src/api-impl/android/database/ContentObserver.java
+++ b/src/api-impl/android/database/ContentObserver.java
@@ -248,4 +248,4 @@ public abstract class ContentObserver {
});
}
}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/database/CrossProcessCursor.java b/src/api-impl/android/database/CrossProcessCursor.java
index 28d49014..289c211b 100644
--- a/src/api-impl/android/database/CrossProcessCursor.java
+++ b/src/api-impl/android/database/CrossProcessCursor.java
@@ -74,5 +74,5 @@ public interface CrossProcessCursor extends Cursor {
* @param newPosition The position that we're moving to.
* @return True if the move is successful, false otherwise.
*/
- boolean onMove(int oldPosition, int newPosition);
-}
\ No newline at end of file
+ boolean onMove(int oldPosition, int newPosition);
+}
diff --git a/src/api-impl/android/database/DefaultDatabaseErrorHandler.java b/src/api-impl/android/database/DefaultDatabaseErrorHandler.java
index ae6227b8..be220670 100644
--- a/src/api-impl/android/database/DefaultDatabaseErrorHandler.java
+++ b/src/api-impl/android/database/DefaultDatabaseErrorHandler.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
@@ -66,7 +66,7 @@ public final class DefaultDatabaseErrorHandler implements DatabaseErrorHandler {
if (!dbObj.isOpen()) {
// database files are not even openable. delete this database file.
// NOTE if the database has attached databases, then any of them could be corrupt.
- // and not deleting all of them could cause corrupted database file to remain and
+ // and not deleting all of them could cause corrupted database file to remain and
// make the application crash on database open operation. To avoid this problem,
// the application should provide its own {@link DatabaseErrorHandler} impl class
// to delete ALL files of the database (including the attached databases).
diff --git a/src/api-impl/android/database/SQLException.java b/src/api-impl/android/database/SQLException.java
index 3ccad6fc..f3b58ea2 100644
--- a/src/api-impl/android/database/SQLException.java
+++ b/src/api-impl/android/database/SQLException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/DatabaseObjectNotClosedException.java b/src/api-impl/android/database/sqlite/DatabaseObjectNotClosedException.java
index 93015a32..0fe6d007 100644
--- a/src/api-impl/android/database/sqlite/DatabaseObjectNotClosedException.java
+++ b/src/api-impl/android/database/sqlite/DatabaseObjectNotClosedException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteAbortException.java b/src/api-impl/android/database/sqlite/SQLiteAbortException.java
index d28b495c..48d36603 100644
--- a/src/api-impl/android/database/sqlite/SQLiteAbortException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteAbortException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteAccessPermException.java b/src/api-impl/android/database/sqlite/SQLiteAccessPermException.java
index c9d3cb87..f307a70a 100644
--- a/src/api-impl/android/database/sqlite/SQLiteAccessPermException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteAccessPermException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteBindOrColumnIndexOutOfRangeException.java b/src/api-impl/android/database/sqlite/SQLiteBindOrColumnIndexOutOfRangeException.java
index 6511d94c..953c1dd3 100644
--- a/src/api-impl/android/database/sqlite/SQLiteBindOrColumnIndexOutOfRangeException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteBindOrColumnIndexOutOfRangeException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteBlobTooBigException.java b/src/api-impl/android/database/sqlite/SQLiteBlobTooBigException.java
index 70ae864d..01157264 100644
--- a/src/api-impl/android/database/sqlite/SQLiteBlobTooBigException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteBlobTooBigException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteCantOpenDatabaseException.java b/src/api-impl/android/database/sqlite/SQLiteCantOpenDatabaseException.java
index be76e5eb..758f7cff 100644
--- a/src/api-impl/android/database/sqlite/SQLiteCantOpenDatabaseException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteCantOpenDatabaseException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteClosable.java b/src/api-impl/android/database/sqlite/SQLiteClosable.java
index bea9ddc1..db450c74 100644
--- a/src/api-impl/android/database/sqlite/SQLiteClosable.java
+++ b/src/api-impl/android/database/sqlite/SQLiteClosable.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteConnection.java b/src/api-impl/android/database/sqlite/SQLiteConnection.java
index 477c73d5..748b6dcc 100644
--- a/src/api-impl/android/database/sqlite/SQLiteConnection.java
+++ b/src/api-impl/android/database/sqlite/SQLiteConnection.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteConnectionPool.java b/src/api-impl/android/database/sqlite/SQLiteConnectionPool.java
index 19a0b40b..6d4e797e 100644
--- a/src/api-impl/android/database/sqlite/SQLiteConnectionPool.java
+++ b/src/api-impl/android/database/sqlite/SQLiteConnectionPool.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteConstraintException.java b/src/api-impl/android/database/sqlite/SQLiteConstraintException.java
index 3b87d8a6..e795395c 100644
--- a/src/api-impl/android/database/sqlite/SQLiteConstraintException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteConstraintException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteCursor.java b/src/api-impl/android/database/sqlite/SQLiteCursor.java
index 3583c576..db42d463 100644
--- a/src/api-impl/android/database/sqlite/SQLiteCursor.java
+++ b/src/api-impl/android/database/sqlite/SQLiteCursor.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
@@ -130,10 +130,10 @@ public class SQLiteCursor extends AbstractWindowedCursor {
return mCount;
}
- /*
+ /*
** The AbstractWindowClass contains protected methods clearOrCreateWindow() and
** closeWindow(), which are used by the android.database.sqlite.* version of this
- ** class. But, since they are marked with "@hide", the following replacement
+ ** class. But, since they are marked with "@hide", the following replacement
** versions are required.
*/
private void awc_clearOrCreateWindow(String name){
diff --git a/src/api-impl/android/database/sqlite/SQLiteCustomFunction.java b/src/api-impl/android/database/sqlite/SQLiteCustomFunction.java
index 6ecb097f..cdbc6f34 100644
--- a/src/api-impl/android/database/sqlite/SQLiteCustomFunction.java
+++ b/src/api-impl/android/database/sqlite/SQLiteCustomFunction.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteDatabase.java b/src/api-impl/android/database/sqlite/SQLiteDatabase.java
index 05ea78ca..70c7abda 100644
--- a/src/api-impl/android/database/sqlite/SQLiteDatabase.java
+++ b/src/api-impl/android/database/sqlite/SQLiteDatabase.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
@@ -1743,7 +1743,7 @@ public final class SQLiteDatabase extends SQLiteClosable {
* Returns true if the new version code is greater than the current database version.
*
* @param newVersion The new version code.
- * @return True if the new version code is greater than the current database version.
+ * @return True if the new version code is greater than the current database version.
*/
public boolean needUpgrade(int newVersion) {
return newVersion > getVersion();
diff --git a/src/api-impl/android/database/sqlite/SQLiteDatabaseConfiguration.java b/src/api-impl/android/database/sqlite/SQLiteDatabaseConfiguration.java
index aef40bfb..5d4ce449 100644
--- a/src/api-impl/android/database/sqlite/SQLiteDatabaseConfiguration.java
+++ b/src/api-impl/android/database/sqlite/SQLiteDatabaseConfiguration.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteDatabaseCorruptException.java b/src/api-impl/android/database/sqlite/SQLiteDatabaseCorruptException.java
index 9314a653..75e7b180 100644
--- a/src/api-impl/android/database/sqlite/SQLiteDatabaseCorruptException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteDatabaseCorruptException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteDatabaseLockedException.java b/src/api-impl/android/database/sqlite/SQLiteDatabaseLockedException.java
index 248eb41f..7ba5f0a7 100644
--- a/src/api-impl/android/database/sqlite/SQLiteDatabaseLockedException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteDatabaseLockedException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteDatatypeMismatchException.java b/src/api-impl/android/database/sqlite/SQLiteDatatypeMismatchException.java
index e16ca117..2f746a87 100644
--- a/src/api-impl/android/database/sqlite/SQLiteDatatypeMismatchException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteDatatypeMismatchException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteDebug.java b/src/api-impl/android/database/sqlite/SQLiteDebug.java
index 94835df3..c20dec56 100644
--- a/src/api-impl/android/database/sqlite/SQLiteDebug.java
+++ b/src/api-impl/android/database/sqlite/SQLiteDebug.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteDiskIOException.java b/src/api-impl/android/database/sqlite/SQLiteDiskIOException.java
index aa3a94e5..be614133 100644
--- a/src/api-impl/android/database/sqlite/SQLiteDiskIOException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteDiskIOException.java
@@ -14,14 +14,14 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
package android.database.sqlite;
/**
- * An exception that indicates that an IO error occured while accessing the
+ * An exception that indicates that an IO error occured while accessing the
* SQLite database file.
*/
public class SQLiteDiskIOException extends SQLiteException {
diff --git a/src/api-impl/android/database/sqlite/SQLiteDoneException.java b/src/api-impl/android/database/sqlite/SQLiteDoneException.java
index d83ad4ed..efbb944f 100644
--- a/src/api-impl/android/database/sqlite/SQLiteDoneException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteDoneException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteException.java b/src/api-impl/android/database/sqlite/SQLiteException.java
index 8f4c8737..b77352c5 100644
--- a/src/api-impl/android/database/sqlite/SQLiteException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteFullException.java b/src/api-impl/android/database/sqlite/SQLiteFullException.java
index 44128c5d..afa99251 100644
--- a/src/api-impl/android/database/sqlite/SQLiteFullException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteFullException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteGlobal.java b/src/api-impl/android/database/sqlite/SQLiteGlobal.java
index 5cfdd039..42777ca9 100644
--- a/src/api-impl/android/database/sqlite/SQLiteGlobal.java
+++ b/src/api-impl/android/database/sqlite/SQLiteGlobal.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteMisuseException.java b/src/api-impl/android/database/sqlite/SQLiteMisuseException.java
index 9b5d90a5..873de0c4 100644
--- a/src/api-impl/android/database/sqlite/SQLiteMisuseException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteMisuseException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteOpenHelper.java b/src/api-impl/android/database/sqlite/SQLiteOpenHelper.java
index c776840b..78656903 100644
--- a/src/api-impl/android/database/sqlite/SQLiteOpenHelper.java
+++ b/src/api-impl/android/database/sqlite/SQLiteOpenHelper.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteOutOfMemoryException.java b/src/api-impl/android/database/sqlite/SQLiteOutOfMemoryException.java
index 6c7668e5..e338edf3 100644
--- a/src/api-impl/android/database/sqlite/SQLiteOutOfMemoryException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteOutOfMemoryException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteProgram.java b/src/api-impl/android/database/sqlite/SQLiteProgram.java
index 4a75ae19..8caf837d 100644
--- a/src/api-impl/android/database/sqlite/SQLiteProgram.java
+++ b/src/api-impl/android/database/sqlite/SQLiteProgram.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteQuery.java b/src/api-impl/android/database/sqlite/SQLiteQuery.java
index 7fa56bc7..3c01f011 100644
--- a/src/api-impl/android/database/sqlite/SQLiteQuery.java
+++ b/src/api-impl/android/database/sqlite/SQLiteQuery.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteQueryBuilder.java b/src/api-impl/android/database/sqlite/SQLiteQueryBuilder.java
index 2f6e2e95..585f3059 100644
--- a/src/api-impl/android/database/sqlite/SQLiteQueryBuilder.java
+++ b/src/api-impl/android/database/sqlite/SQLiteQueryBuilder.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteReadOnlyDatabaseException.java b/src/api-impl/android/database/sqlite/SQLiteReadOnlyDatabaseException.java
index de87023d..0daf3c7b 100644
--- a/src/api-impl/android/database/sqlite/SQLiteReadOnlyDatabaseException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteReadOnlyDatabaseException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteSession.java b/src/api-impl/android/database/sqlite/SQLiteSession.java
index 60a4eb14..ccf5370e 100644
--- a/src/api-impl/android/database/sqlite/SQLiteSession.java
+++ b/src/api-impl/android/database/sqlite/SQLiteSession.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteStatement.java b/src/api-impl/android/database/sqlite/SQLiteStatement.java
index 73c99be2..1568cfed 100644
--- a/src/api-impl/android/database/sqlite/SQLiteStatement.java
+++ b/src/api-impl/android/database/sqlite/SQLiteStatement.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteStatementInfo.java b/src/api-impl/android/database/sqlite/SQLiteStatementInfo.java
index c70d5b5b..44da4632 100644
--- a/src/api-impl/android/database/sqlite/SQLiteStatementInfo.java
+++ b/src/api-impl/android/database/sqlite/SQLiteStatementInfo.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteTableLockedException.java b/src/api-impl/android/database/sqlite/SQLiteTableLockedException.java
index e2402a06..c6d07bf2 100644
--- a/src/api-impl/android/database/sqlite/SQLiteTableLockedException.java
+++ b/src/api-impl/android/database/sqlite/SQLiteTableLockedException.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/database/sqlite/SQLiteTransactionListener.java b/src/api-impl/android/database/sqlite/SQLiteTransactionListener.java
index d0b12b2e..1ea1ca14 100644
--- a/src/api-impl/android/database/sqlite/SQLiteTransactionListener.java
+++ b/src/api-impl/android/database/sqlite/SQLiteTransactionListener.java
@@ -14,7 +14,7 @@
* limitations under the License.
*/
/*
-** Modified to support SQLite extensions by the SQLite developers:
+** Modified to support SQLite extensions by the SQLite developers:
** sqlite-dev@sqlite.org.
*/
diff --git a/src/api-impl/android/graphics/Paint.java b/src/api-impl/android/graphics/Paint.java
index f5bca14a..369c9279 100644
--- a/src/api-impl/android/graphics/Paint.java
+++ b/src/api-impl/android/graphics/Paint.java
@@ -60,9 +60,9 @@ public class Paint {
}
public void getTextBounds(String text, int start, int end, Rect bounds) {}
public void getTextBounds(char[] text, int index, int count, Rect bounds) {}
- public int getTextWidths(String text, int start, int end, float[] widths) {
+ public int getTextWidths(String text, int start, int end, float[] widths) {
// TODO fix it
- return 0;
+ return 0;
}
public void setFilterBitmap(boolean filter) {}
@@ -100,7 +100,7 @@ public class Paint {
return colorFilter;
}
- public Shader setShader(Shader shader) { return shader; }
+ public Shader setShader(Shader shader) { return shader; }
public enum Style {
/**
diff --git a/src/api-impl/android/graphics/PointF.java b/src/api-impl/android/graphics/PointF.java
index a34c8389..e4b1ae23 100644
--- a/src/api-impl/android/graphics/PointF.java
+++ b/src/api-impl/android/graphics/PointF.java
@@ -24,13 +24,13 @@ import android.os.Parcelable;
public class PointF implements Parcelable {
public float x;
public float y;
-
+
public PointF() {}
public PointF(float x, float y) {
this.x = x;
- this.y = y;
+ this.y = y;
}
-
+
public PointF(Point p) {
this.x = p.x;
this.y = p.y;
@@ -46,7 +46,7 @@ public class PointF implements Parcelable {
this.x = p.x;
this.y = p.y;
}
-
+
/**
* Set the point's x and y coordinates
*/
@@ -54,7 +54,7 @@ public class PointF implements Parcelable {
this.x = x;
this.y = y;
}
-
+
/**
* Set the point's x and y coordinates to the coordinates of p
*/
@@ -62,22 +62,22 @@ public class PointF implements Parcelable {
this.x = p.x;
this.y = p.y;
}
-
- public final void negate() {
+
+ public final void negate() {
x = -x;
- y = -y;
+ y = -y;
}
-
+
public final void offset(float dx, float dy) {
x += dx;
y += dy;
}
-
+
/**
* Returns true if the point's coordinates equal (x,y)
*/
- public final boolean equals(float x, float y) {
- return this.x == x && this.y == y;
+ public final boolean equals(float x, float y) {
+ return this.x == x && this.y == y;
}
@Override
@@ -105,14 +105,14 @@ public class PointF implements Parcelable {
/**
* Return the euclidian distance from (0,0) to the point
*/
- public final float length() {
- return length(x, y);
+ public final float length() {
+ return length(x, y);
}
-
+
/**
* Returns the euclidian distance from (0,0) to (x,y)
*/
public static float length(float x, float y) {
return (float) Math.hypot(x, y);
}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/graphics/drawable/Animatable.java b/src/api-impl/android/graphics/drawable/Animatable.java
index a878e685..276a6e7b 100644
--- a/src/api-impl/android/graphics/drawable/Animatable.java
+++ b/src/api-impl/android/graphics/drawable/Animatable.java
@@ -1,5 +1,5 @@
package android.graphics.drawable;
public interface Animatable {
-
+
}
diff --git a/src/api-impl/android/graphics/drawable/Drawable.java b/src/api-impl/android/graphics/drawable/Drawable.java
index 9a95f19a..0dfd5b4a 100644
--- a/src/api-impl/android/graphics/drawable/Drawable.java
+++ b/src/api-impl/android/graphics/drawable/Drawable.java
@@ -71,7 +71,7 @@ public class Drawable {
public int getChangingConfigurations() {
return Drawable.this.getChangingConfigurations();
}
-
+
};
}
@@ -127,7 +127,7 @@ public class Drawable {
public void invalidateSelf() {
native_invalidate(paintable);
-
+
/* this shouldn't ever be needed with Gtk, but let's play it safe for now */
if (this.callback != null) {
callback.invalidateDrawable(this);
diff --git a/src/api-impl/android/graphics/drawable/ScaleDrawable.java b/src/api-impl/android/graphics/drawable/ScaleDrawable.java
index c3734d45..de197ae1 100644
--- a/src/api-impl/android/graphics/drawable/ScaleDrawable.java
+++ b/src/api-impl/android/graphics/drawable/ScaleDrawable.java
@@ -9,5 +9,5 @@ public class ScaleDrawable extends Drawable {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'draw'");
}
-
+
}
diff --git a/src/api-impl/android/graphics/drawable/ShapeDrawable.java b/src/api-impl/android/graphics/drawable/ShapeDrawable.java
index 3bdc3616..6608c250 100644
--- a/src/api-impl/android/graphics/drawable/ShapeDrawable.java
+++ b/src/api-impl/android/graphics/drawable/ShapeDrawable.java
@@ -13,5 +13,5 @@ public class ShapeDrawable extends Drawable {
public void setPadding(Rect padding) {}
public void setShape(Shape shape) {}
-
+
}
diff --git a/src/api-impl/android/location/GnssStatus.java b/src/api-impl/android/location/GnssStatus.java
new file mode 100644
index 00000000..770349ad
--- /dev/null
+++ b/src/api-impl/android/location/GnssStatus.java
@@ -0,0 +1,37 @@
+package android.location;
+
+public final class GnssStatus {
+ public static final int CONSTELLATION_UNKNOWN = 0;
+ public static final int CONSTELLATION_GPS = 1;
+ public static final int CONSTELLATION_SBAS = 2;
+ public static final int CONSTELLATION_GLONASS = 3;
+ public static final int CONSTELLATION_QZSS = 4;
+ public static final int CONSTELLATION_BEIDOU = 5;
+ public static final int CONSTELLATION_GALILEO = 6;
+ public static final int CONSTELLATION_IRNSS = 7;
+
+ public GnssStatus() {
+ }
+
+ public static abstract class Callback {
+ public void onStarted() {
+ }
+
+ public void onStopped() {
+ }
+
+ public void onFirstFix(int ttffMillis) {
+ }
+
+ public void onSatelliteStatusChanged(GnssStatus status) {
+ }
+ }
+
+ public int getSatelliteCount() {
+ return 3; // FIXME
+ }
+
+ public boolean usedInFix(int index) {
+ return true; // FIXME
+ }
+}
diff --git a/src/api-impl/android/location/Location.java b/src/api-impl/android/location/Location.java
index 7a9f95fb..3cba5cbf 100644
--- a/src/api-impl/android/location/Location.java
+++ b/src/api-impl/android/location/Location.java
@@ -23,5 +23,5 @@ public class Location {
public double getBearing() {
return bearing;
}
-
+
}
diff --git a/src/api-impl/android/media/MediaCodec.java b/src/api-impl/android/media/MediaCodec.java
index 7fb19d58..613726fe 100644
--- a/src/api-impl/android/media/MediaCodec.java
+++ b/src/api-impl/android/media/MediaCodec.java
@@ -198,5 +198,5 @@ public class MediaCodec {
}
public static interface OnFrameRenderedListener {}
-
+
}
diff --git a/src/api-impl/android/media/MediaDescription.java b/src/api-impl/android/media/MediaDescription.java
index 0a2c168f..5227ad99 100644
--- a/src/api-impl/android/media/MediaDescription.java
+++ b/src/api-impl/android/media/MediaDescription.java
@@ -41,5 +41,5 @@ public class MediaDescription {
return description;
}
}
-
+
}
diff --git a/src/api-impl/android/net/Network.java b/src/api-impl/android/net/Network.java
index 013669c1..04c98e39 100644
--- a/src/api-impl/android/net/Network.java
+++ b/src/api-impl/android/net/Network.java
@@ -5,4 +5,3 @@ public class Network {
return 1L;
}
}
-
diff --git a/src/api-impl/android/net/http/X509TrustManagerExtensions.java b/src/api-impl/android/net/http/X509TrustManagerExtensions.java
index 317b71df..3be59002 100644
--- a/src/api-impl/android/net/http/X509TrustManagerExtensions.java
+++ b/src/api-impl/android/net/http/X509TrustManagerExtensions.java
@@ -10,7 +10,7 @@ public class X509TrustManagerExtensions {
public X509TrustManagerExtensions(X509TrustManager tm) {}
- public List checkServerTrusted (X509Certificate[] chain,
+ public List checkServerTrusted (X509Certificate[] chain,
String authType, String host) {
return new ArrayList<>();
}
diff --git a/src/api-impl/android/net/wifi/p2p/WifiP2pManager.java b/src/api-impl/android/net/wifi/p2p/WifiP2pManager.java
index 77a9a142..95fd6005 100644
--- a/src/api-impl/android/net/wifi/p2p/WifiP2pManager.java
+++ b/src/api-impl/android/net/wifi/p2p/WifiP2pManager.java
@@ -1,5 +1,5 @@
package android.net.wifi.p2p;
public class WifiP2pManager {
-
+
}
diff --git a/src/api-impl/android/nfc/NfcManager.java b/src/api-impl/android/nfc/NfcManager.java
index e0d82765..c1d60238 100644
--- a/src/api-impl/android/nfc/NfcManager.java
+++ b/src/api-impl/android/nfc/NfcManager.java
@@ -1,5 +1,5 @@
package android.nfc;
public class NfcManager {
-
+
}
diff --git a/src/api-impl/android/os/ConditionVariable.java b/src/api-impl/android/os/ConditionVariable.java
index c630f021..d775b42f 100644
--- a/src/api-impl/android/os/ConditionVariable.java
+++ b/src/api-impl/android/os/ConditionVariable.java
@@ -42,7 +42,7 @@ public class ConditionVariable {
/**
* Create the ConditionVariable with the given state.
- *
+ *
*
* Pass true for opened and false for closed.
*/
diff --git a/src/api-impl/android/os/DropBoxManager.java b/src/api-impl/android/os/DropBoxManager.java
index 2c29513a..4160c169 100644
--- a/src/api-impl/android/os/DropBoxManager.java
+++ b/src/api-impl/android/os/DropBoxManager.java
@@ -1,5 +1,5 @@
package android.os;
public class DropBoxManager {
-
+
}
diff --git a/src/api-impl/android/os/FileObserver.java b/src/api-impl/android/os/FileObserver.java
index 834d696c..494bf2a6 100644
--- a/src/api-impl/android/os/FileObserver.java
+++ b/src/api-impl/android/os/FileObserver.java
@@ -7,7 +7,7 @@ public class FileObserver {
public FileObserver(String path) {}
public void startWatching() {}
-
+
public void stopWatching() {}
-
+
}
diff --git a/src/api-impl/android/os/OperationCanceledException.java b/src/api-impl/android/os/OperationCanceledException.java
index a965e3cb..697cdda8 100644
--- a/src/api-impl/android/os/OperationCanceledException.java
+++ b/src/api-impl/android/os/OperationCanceledException.java
@@ -22,7 +22,7 @@ package android.os;
* @see CancellationSignal
*/
public class OperationCanceledException extends RuntimeException {
-
+
public OperationCanceledException() {
this(null);
}
@@ -30,4 +30,4 @@ public class OperationCanceledException extends RuntimeException {
public OperationCanceledException(String message) {
super(message != null ? message : "The operation has been canceled.");
}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/os/StrictMode.java b/src/api-impl/android/os/StrictMode.java
index 819c51db..f69f400d 100644
--- a/src/api-impl/android/os/StrictMode.java
+++ b/src/api-impl/android/os/StrictMode.java
@@ -11,7 +11,7 @@ public final class StrictMode {
public static ThreadPolicy allowThreadDiskReads() {
return new ThreadPolicy();
}
- public static ThreadPolicy getThreadPolicy() {
+ public static ThreadPolicy getThreadPolicy() {
return new ThreadPolicy();
}
@@ -22,7 +22,7 @@ public final class StrictMode {
final int mask;
final OnThreadViolationListener listener;
final Executor callbackExecutor;
-
+
private ThreadPolicy(int mask, OnThreadViolationListener listener, Executor executor) {
this.mask = mask;
this.listener = listener;
@@ -37,7 +37,7 @@ public final class StrictMode {
public void execute(Runnable command) {}
};
}
-
+
public static final class Builder {
private int mask = 0;
private OnThreadViolationListener listener;
diff --git a/src/api-impl/android/os/storage/StorageManager.java b/src/api-impl/android/os/storage/StorageManager.java
index a52cbfb1..e91fc093 100644
--- a/src/api-impl/android/os/storage/StorageManager.java
+++ b/src/api-impl/android/os/storage/StorageManager.java
@@ -1,5 +1,5 @@
package android.os.storage;
public class StorageManager {
-
+
}
diff --git a/src/api-impl/android/text/Layout.java b/src/api-impl/android/text/Layout.java
index 5d2ff29f..0666a74b 100644
--- a/src/api-impl/android/text/Layout.java
+++ b/src/api-impl/android/text/Layout.java
@@ -3,7 +3,7 @@ package android.text;
import android.graphics.Canvas;
public class Layout {
-
+
public enum Alignment {
ALIGN_NORMAL,
ALIGN_OPPOSITE,
diff --git a/src/api-impl/android/text/Selection.java b/src/api-impl/android/text/Selection.java
index 9ea05378..6cf0b167 100644
--- a/src/api-impl/android/text/Selection.java
+++ b/src/api-impl/android/text/Selection.java
@@ -148,4 +148,4 @@ public class Selection {
*/
public static final Object SELECTION_START = new START();
public static final Object SELECTION_END = new END();
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/text/SpannableStringBuilder.java b/src/api-impl/android/text/SpannableStringBuilder.java
index 2341c55f..61d01479 100644
--- a/src/api-impl/android/text/SpannableStringBuilder.java
+++ b/src/api-impl/android/text/SpannableStringBuilder.java
@@ -1415,4 +1415,4 @@ public class SpannableStringBuilder implements CharSequence, GetChars, Spannable
private static final int SPAN_END_AT_START = 0x4000;
private static final int SPAN_END_AT_END = 0x8000;
private static final int SPAN_START_END_MASK = 0xF000;
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/text/format/DateUtils.java b/src/api-impl/android/text/format/DateUtils.java
index f3aff885..9d096387 100644
--- a/src/api-impl/android/text/format/DateUtils.java
+++ b/src/api-impl/android/text/format/DateUtils.java
@@ -13,7 +13,7 @@ public class DateUtils {
public static boolean isToday(long millis) {
Date d1 = new Date(millis);
Date d2 = new Date();
-
+
return d1.getYear() == d2.getYear() && d1.getMonth() == d2.getMonth() && d1.getDate() == d2.getDate();
}
diff --git a/src/api-impl/android/text/method/LinkMovementMethod.java b/src/api-impl/android/text/method/LinkMovementMethod.java
index abba0a36..9abdf689 100644
--- a/src/api-impl/android/text/method/LinkMovementMethod.java
+++ b/src/api-impl/android/text/method/LinkMovementMethod.java
@@ -5,5 +5,5 @@ public class LinkMovementMethod extends BaseMovementMethod {
public static MovementMethod getInstance() {
return new LinkMovementMethod();
}
-
+
}
diff --git a/src/api-impl/android/util/JsonToken.java b/src/api-impl/android/util/JsonToken.java
index 1e6c27b3..de44029b 100644
--- a/src/api-impl/android/util/JsonToken.java
+++ b/src/api-impl/android/util/JsonToken.java
@@ -79,4 +79,4 @@ public enum JsonToken {
* tokens.
*/
END_DOCUMENT
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/util/LruCache.java b/src/api-impl/android/util/LruCache.java
index b187e05e..76f9a128 100644
--- a/src/api-impl/android/util/LruCache.java
+++ b/src/api-impl/android/util/LruCache.java
@@ -358,4 +358,4 @@ public class LruCache {
return String.format("LruCache[maxSize=%d,hits=%d,misses=%d,hitRate=%d%%]",
maxSize, hitCount, missCount, hitPercent);
}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/util/Property.java b/src/api-impl/android/util/Property.java
index e4123c45..b0074e2d 100644
--- a/src/api-impl/android/util/Property.java
+++ b/src/api-impl/android/util/Property.java
@@ -77,4 +77,4 @@ public abstract class Property {
public Class getType() {
return mType;
}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/view/AbsSavedState.java b/src/api-impl/android/view/AbsSavedState.java
index 30ba050d..b21ebf1e 100644
--- a/src/api-impl/android/view/AbsSavedState.java
+++ b/src/api-impl/android/view/AbsSavedState.java
@@ -1,5 +1,5 @@
package android.view;
public class AbsSavedState {
-
+
}
diff --git a/src/api-impl/android/view/ActionMode.java b/src/api-impl/android/view/ActionMode.java
index 932942e1..04f1a477 100644
--- a/src/api-impl/android/view/ActionMode.java
+++ b/src/api-impl/android/view/ActionMode.java
@@ -355,4 +355,4 @@ public abstract class ActionMode {
}
}
}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/view/GestureDetector.java b/src/api-impl/android/view/GestureDetector.java
index 09962b60..2e898d39 100644
--- a/src/api-impl/android/view/GestureDetector.java
+++ b/src/api-impl/android/view/GestureDetector.java
@@ -310,9 +310,9 @@ public class GestureDetector {
/**
* Creates a GestureDetector with the supplied listener.
- * This variant of the constructor should be used from a non-UI thread
+ * This variant of the constructor should be used from a non-UI thread
* (as it allows specifying the Handler).
- *
+ *
* @param listener the listener invoked for all the callbacks, this must
* not be null.
* @param handler the handler to use
@@ -331,10 +331,10 @@ public class GestureDetector {
* Creates a GestureDetector with the supplied listener.
* You may only use this constructor from a UI thread (this is the usual situation).
* @see android.os.Handler#Handler()
- *
+ *
* @param listener the listener invoked for all the callbacks, this must
* not be null.
- *
+ *
* @throws NullPointerException if {@code listener} is null.
*
* @deprecated Use {@link #GestureDetector(android.content.Context,
@@ -394,7 +394,7 @@ public class GestureDetector {
}
init(context);
}
-
+
/**
* Creates a GestureDetector with the supplied listener that runs deferred events on the
* thread associated with the supplied {@link android.os.Handler}.
@@ -447,7 +447,7 @@ public class GestureDetector {
/**
* Sets the listener which will be called for double-tap and related
* gestures.
- *
+ *
* @param onDoubleTapListener the listener invoked for all the callbacks, or
* null to stop listening for double-tap gestures.
*/
diff --git a/src/api-impl/android/view/InflateException.java b/src/api-impl/android/view/InflateException.java
index fac5b1ef..c76a9ea0 100644
--- a/src/api-impl/android/view/InflateException.java
+++ b/src/api-impl/android/view/InflateException.java
@@ -9,5 +9,5 @@ public class InflateException extends RuntimeException {
public InflateException(String string) {
super(string);
}
-
+
}
diff --git a/src/api-impl/android/view/TextureView.java b/src/api-impl/android/view/TextureView.java
index e0975668..3237b8eb 100644
--- a/src/api-impl/android/view/TextureView.java
+++ b/src/api-impl/android/view/TextureView.java
@@ -15,4 +15,4 @@ public class TextureView extends View {
public interface SurfaceTextureListener {}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/view/View.java b/src/api-impl/android/view/View.java
index b98814ce..6020e7ab 100644
--- a/src/api-impl/android/view/View.java
+++ b/src/api-impl/android/view/View.java
@@ -1099,7 +1099,7 @@ public class View implements Drawable.Callback {
protected native void native_requestLayout(long widget);
protected native void native_setBackgroundDrawable(long widget, long paintable);
protected native void native_queueAllocate(long widget);
-
+
protected native void native_addClass(long widget, String className);
protected native void native_removeClass(long widget, String className);
diff --git a/src/api-impl/android/view/ViewConfiguration.java b/src/api-impl/android/view/ViewConfiguration.java
index 8d37680f..32e5e794 100644
--- a/src/api-impl/android/view/ViewConfiguration.java
+++ b/src/api-impl/android/view/ViewConfiguration.java
@@ -6,7 +6,7 @@ import android.content.Context;
* default values are mainly based on AOSPs defaults. Does not account for scaling yet.
*/
public class ViewConfiguration {
-
+
public static ViewConfiguration get(Context context) {
return new ViewConfiguration();
}
diff --git a/src/api-impl/android/view/ViewStub.java b/src/api-impl/android/view/ViewStub.java
index 52ae719e..a8a0242e 100644
--- a/src/api-impl/android/view/ViewStub.java
+++ b/src/api-impl/android/view/ViewStub.java
@@ -29,7 +29,7 @@ import android.util.AttributeSet;
* A ViewStub is an invisible, zero-sized View that can be used to lazily inflate
* layout resources at runtime.
*
- * When a ViewStub is made visible, or when {@link #inflate()} is invoked, the layout resource
+ * When a ViewStub is made visible, or when {@link #inflate()} is invoked, the layout resource
* is inflated. The ViewStub then replaces itself in its parent with the inflated View or Views.
* Therefore, the ViewStub exists in the view hierarchy until {@link #setVisibility(int)} or
* {@link #inflate()} is invoked.
@@ -169,9 +169,9 @@ public final class ViewStub extends View {
* Specifies the layout resource to inflate when this StubbedView becomes visible or invisible
* or when {@link #inflate()} is invoked. The View created by inflating the layout resource is
* used to replace this StubbedView in its parent.
- *
+ *
* @param layoutResource A valid layout resource identifier (different from 0.)
- *
+ *
* @see #getLayoutResource()
* @see #setVisibility(int)
* @see #inflate()
@@ -217,7 +217,7 @@ public final class ViewStub extends View {
*
* @param visibility One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
*
- * @see #inflate()
+ * @see #inflate()
*/
@Override
public void setVisibility(int visibility) {
@@ -305,7 +305,7 @@ public final class ViewStub extends View {
* Listener used to receive a notification after a ViewStub has successfully
* inflated its layout resource.
*
- * @see android.view.ViewStub#setOnInflateListener(android.view.ViewStub.OnInflateListener)
+ * @see android.view.ViewStub#setOnInflateListener(android.view.ViewStub.OnInflateListener)
*/
public static interface OnInflateListener {
/**
diff --git a/src/api-impl/android/view/animation/Interpolator.java b/src/api-impl/android/view/animation/Interpolator.java
index 3c68bda7..7c986567 100644
--- a/src/api-impl/android/view/animation/Interpolator.java
+++ b/src/api-impl/android/view/animation/Interpolator.java
@@ -3,5 +3,5 @@ package android.view.animation;
import android.animation.TimeInterpolator;
public interface Interpolator extends TimeInterpolator {
-
+
}
diff --git a/src/api-impl/android/webkit/DownloadListener.java b/src/api-impl/android/webkit/DownloadListener.java
index 8d7d68c2..1c2d3f43 100644
--- a/src/api-impl/android/webkit/DownloadListener.java
+++ b/src/api-impl/android/webkit/DownloadListener.java
@@ -26,4 +26,4 @@ public interface DownloadListener {
*/
public void onDownloadStart(String url, String userAgent,
String contentDisposition, String mimetype, long contentLength);
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/webkit/MimeTypeMap.java b/src/api-impl/android/webkit/MimeTypeMap.java
index 8f6e0cc7..3c089d4e 100644
--- a/src/api-impl/android/webkit/MimeTypeMap.java
+++ b/src/api-impl/android/webkit/MimeTypeMap.java
@@ -179,7 +179,7 @@ public class MimeTypeMap {
sMimeTypeMap.loadEntry("application/rdf+xml", "rdf");
sMimeTypeMap.loadEntry("application/rss+xml", "rss");
sMimeTypeMap.loadEntry("application/zip", "zip");
- sMimeTypeMap.loadEntry("application/vnd.android.package-archive",
+ sMimeTypeMap.loadEntry("application/vnd.android.package-archive",
"apk");
sMimeTypeMap.loadEntry("application/vnd.cinderella", "cdy");
sMimeTypeMap.loadEntry("application/vnd.ms-pki.stl", "stl");
diff --git a/src/api-impl/android/webkit/WebView.java b/src/api-impl/android/webkit/WebView.java
index 3db8e33f..633629e4 100644
--- a/src/api-impl/android/webkit/WebView.java
+++ b/src/api-impl/android/webkit/WebView.java
@@ -68,7 +68,7 @@ public class WebView extends View {
data = new String(Base64.decode(data, 0));
}
if (mimeType != null && mimeType.contains(";")) {
- mimeType = mimeType.substring(0, mimeType.indexOf(";"));
+ mimeType = mimeType.substring(0, mimeType.indexOf(";"));
}
// webkit doesn't allow overwriting the file:// uri scheme. So we replace it with the android-asset:// scheme
data = data.replace("file:///android_asset/", "android-asset:///assets/");
diff --git a/src/api-impl/android/widget/AbsSpinner.java b/src/api-impl/android/widget/AbsSpinner.java
index b6aafa47..f1f7551f 100644
--- a/src/api-impl/android/widget/AbsSpinner.java
+++ b/src/api-impl/android/widget/AbsSpinner.java
@@ -30,7 +30,7 @@ import android.view.ViewGroup;
/**
* An abstract base class for spinner widgets. SDK users will probably not
* need to use this class.
- *
+ *
* @attr ref android.R.styleable#AbsSpinner_entries
*/
public abstract class AbsSpinner extends AdapterView {
@@ -102,12 +102,12 @@ public abstract class AbsSpinner extends AdapterView {
mAdapter.unregisterDataSetObserver(mDataSetObserver);
resetList();
}
-
+
mAdapter = adapter;
-
+
mOldSelectedPosition = INVALID_POSITION;
mOldSelectedRowId = INVALID_ROW_ID;
-
+
if (mAdapter != null) {
mOldItemCount = mItemCount;
mItemCount = mAdapter.getCount();
@@ -120,14 +120,14 @@ public abstract class AbsSpinner extends AdapterView {
setSelectedPositionInt(position);
setNextSelectedPositionInt(position);
-
+
if (mItemCount == 0) {
// Nothing selected
checkSelectionChanged();
}
-
+
} else {
- checkFocus();
+ checkFocus();
resetList();
// Nothing selected
checkSelectionChanged();
@@ -142,26 +142,26 @@ public abstract class AbsSpinner extends AdapterView {
void resetList() {
mDataChanged = false;
mNeedSync = false;
-
+
// removeAllViewsInLayout();
for (int i = getChildCount() - 1; i >= 0; i--) {
removeViewInLayout(getChildAt(i));
}
mOldSelectedPosition = INVALID_POSITION;
mOldSelectedRowId = INVALID_ROW_ID;
-
+
setSelectedPositionInt(INVALID_POSITION);
setNextSelectedPositionInt(INVALID_POSITION);
invalidate();
}
- /**
+ /**
* @see android.view.View#measure(int, int)
- *
+ *
* Figure out the dimensions of this Spinner. The width comes from
* the widthMeasureSpec as Spinnners can't have their width set to
* UNSPECIFIED. The height is based on the height of the selected item
- * plus padding.
+ * plus padding.
*/
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
@@ -181,11 +181,11 @@ public abstract class AbsSpinner extends AdapterView {
if (mDataChanged) {
handleDataChanged();
}
-
+
int preferredHeight = 0;
int preferredWidth = 0;
boolean needsMeasuring = true;
-
+
int selectedPosition = getSelectedItemPosition();
if (selectedPosition >= 0 && mAdapter != null && selectedPosition < mAdapter.getCount()) {
// Try looking in the recycler. (Maybe we were measured once already)
@@ -205,14 +205,14 @@ public abstract class AbsSpinner extends AdapterView {
mBlockLayoutRequests = false;
}
measureChild(view, widthMeasureSpec, heightMeasureSpec);
-
+
preferredHeight = getChildHeight(view) + mSpinnerPadding.top + mSpinnerPadding.bottom;
preferredWidth = getChildWidth(view) + mSpinnerPadding.left + mSpinnerPadding.right;
-
+
needsMeasuring = false;
}
}
-
+
if (needsMeasuring) {
// No views -- just use padding
preferredHeight = mSpinnerPadding.top + mSpinnerPadding.bottom;
@@ -235,18 +235,18 @@ public abstract class AbsSpinner extends AdapterView {
int getChildHeight(View child) {
return child.getMeasuredHeight();
}
-
+
int getChildWidth(View child) {
return child.getMeasuredWidth();
}
-
+
@Override
protected ViewGroup.LayoutParams generateDefaultLayoutParams() {
return new ViewGroup.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.WRAP_CONTENT);
}
-
+
void recycleAllViews() {
final int childCount = getChildCount();
final AbsSpinner.RecycleBin recycleBin = mRecycler;
@@ -257,7 +257,7 @@ public abstract class AbsSpinner extends AdapterView {
View v = getChildAt(i);
int index = position + i;
recycleBin.put(index, v);
- }
+ }
}
/**
@@ -276,14 +276,14 @@ public abstract class AbsSpinner extends AdapterView {
requestLayout();
invalidate();
}
-
+
/**
* Makes the item at the supplied position selected.
- *
+ *
* @param position Position to select
* @param animate Should the transition be animated
- *
+ *
*/
void setSelectionInt(int position, boolean animate) {
if (position != mOldSelectedPosition) {
@@ -305,11 +305,11 @@ public abstract class AbsSpinner extends AdapterView {
return null;
}
}
-
+
/**
* Override to prevent spamming ourselves with layout requests
* as we place views
- *
+ *
* @see android.view.View#requestLayout()
*/
@Override
@@ -331,7 +331,7 @@ public abstract class AbsSpinner extends AdapterView {
/**
* Maps a point to a position in the list.
- *
+ *
* @param x X in local coordinate
* @param y Y in local coordinate
* @return The position of the item which contains the specified point, or
@@ -353,7 +353,7 @@ public abstract class AbsSpinner extends AdapterView {
return mFirstPosition + i;
}
}
- }
+ }
return INVALID_POSITION;
}
@@ -363,7 +363,7 @@ public abstract class AbsSpinner extends AdapterView {
public void put(int position, View v) {
mScrapHeap.put(position, v);
}
-
+
View get(int position) {
// System.out.print("Looking for " + position);
View result = mScrapHeap.get(position);
@@ -388,4 +388,4 @@ public abstract class AbsSpinner extends AdapterView {
scrapHeap.clear();
}
}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/widget/Adapter.java b/src/api-impl/android/widget/Adapter.java
index f204f068..e411b460 100644
--- a/src/api-impl/android/widget/Adapter.java
+++ b/src/api-impl/android/widget/Adapter.java
@@ -25,7 +25,7 @@ import android.view.ViewGroup;
* underlying data for that view. The Adapter provides access to the data items.
* The Adapter is also responsible for making a {@link android.view.View} for
* each item in the data set.
- *
+ *
* @see android.widget.ArrayAdapter
* @see android.widget.CursorAdapter
* @see android.widget.SimpleCursorAdapter
@@ -46,15 +46,15 @@ public interface Adapter {
void unregisterDataSetObserver(DataSetObserver observer);
/**
* How many items are in the data set represented by this Adapter.
- *
+ *
* @return Count of items.
*/
- int getCount();
+ int getCount();
/**
* Get the data item associated with the specified position in the data set.
- *
- * @param position Position of the item whose data we want within the adapter's
+ *
+ * @param position Position of the item whose data we want within the adapter's
* data set.
* @return The data at the specified position.
*/
@@ -62,7 +62,7 @@ public interface Adapter {
/**
* Get the row id associated with the specified position in the list.
- *
+ *
* @param position The position of the item within the adapter's data set whose row id we want.
* @return The id of the item at the specified position.
*/
@@ -71,7 +71,7 @@ public interface Adapter {
/**
* Indicates whether the item ids are stable across changes to the
* underlying data.
- *
+ *
* @return True if the same id always refers to the same object.
*/
boolean hasStableIds();
@@ -82,7 +82,7 @@ public interface Adapter {
* parent View (GridView, ListView...) will apply default layout parameters unless you use
* {@link android.view.LayoutInflater#inflate(int, android.view.ViewGroup, boolean)}
* to specify a root view and to prevent attachment to the root.
- *
+ *
* @param position The position of the item within the adapter's data set of the item whose view
* we want.
* @param convertView The old view to reuse, if possible. Note: You should check that this view
@@ -100,7 +100,7 @@ public interface Adapter {
* view. For example, this can be used if the client does not want a
* particular view to be given for conversion in
* {@link #getView(int, View, ViewGroup)}.
- *
+ *
* @see #getItemViewType(int)
* @see #getViewTypeCount()
*/
@@ -108,7 +108,7 @@ public interface Adapter {
/**
* Get the type of View that will be created by {@link #getView} for the specified item.
- *
+ *
* @param position The position of the item within the adapter's data set whose view type we
* want.
* @return An integer representing the type of View. Two views should share the same type if one
@@ -130,13 +130,13 @@ public interface Adapter {
* This method will only be called when when the adapter is set on the
* the {@link AdapterView}.
*
- *
+ *
* @return The number of types of Views that will be created by this adapter
*/
int getViewTypeCount();
static final int NO_SELECTION = Integer.MIN_VALUE;
-
+
/**
* @return true if this adapter doesn't contain any data. This is used to determine
* whether the empty view should be displayed. A typical implementation will return
diff --git a/src/api-impl/android/widget/AdapterView.java b/src/api-impl/android/widget/AdapterView.java
index b28b967f..242202c5 100644
--- a/src/api-impl/android/widget/AdapterView.java
+++ b/src/api-impl/android/widget/AdapterView.java
@@ -185,7 +185,7 @@ public abstract class AdapterView extends ViewGroup {
* The last selected position we used when notifying
*/
int mOldSelectedPosition = INVALID_POSITION;
-
+
/**
* The id of the last selected position we used when notifying
*/
@@ -702,7 +702,7 @@ public abstract class AdapterView extends ViewGroup {
// Force one here to make sure that the state of the list matches
// the state of the adapter.
if (mDataChanged) {
- this.onLayout(false, getLeft(), getTop(), getRight(), getBottom());
+ this.onLayout(false, getLeft(), getTop(), getRight(), getBottom());
}
} else {
if (mEmptyView != null) mEmptyView.setVisibility(View.GONE);
@@ -1091,4 +1091,4 @@ public abstract class AdapterView extends ViewGroup {
}
}
}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/widget/AutoCompleteTextView.java b/src/api-impl/android/widget/AutoCompleteTextView.java
index a57cc0f2..56b4fe2d 100644
--- a/src/api-impl/android/widget/AutoCompleteTextView.java
+++ b/src/api-impl/android/widget/AutoCompleteTextView.java
@@ -53,4 +53,4 @@ public class AutoCompleteTextView extends EditText {
public void performCompletion() {}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/widget/Checkable.java b/src/api-impl/android/widget/Checkable.java
index 0aef6271..2527fd55 100644
--- a/src/api-impl/android/widget/Checkable.java
+++ b/src/api-impl/android/widget/Checkable.java
@@ -5,4 +5,4 @@ public interface Checkable {
public void setChecked(boolean checked);
public boolean isChecked();
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/widget/Filter.java b/src/api-impl/android/widget/Filter.java
index 7f2daf85..eaf4baa9 100644
--- a/src/api-impl/android/widget/Filter.java
+++ b/src/api-impl/android/widget/Filter.java
@@ -37,7 +37,7 @@ import android.util.Log;
*/
public abstract class Filter {
private static final String LOG_TAG = "Filter";
-
+
private static final String THREAD_NAME = "Filter";
private static final int FILTER_TOKEN = 0xD0D0F00D;
private static final int FINISH_TOKEN = 0xDEADBEEF;
@@ -103,16 +103,16 @@ public abstract class Filter {
mThreadHandler = new RequestHandler(thread.getLooper());
}
final long delay = (mDelayer == null) ? 0 : mDelayer.getPostingDelay(constraint);
-
+
Message message = mThreadHandler.obtainMessage(FILTER_TOKEN);
-
+
RequestArguments args = new RequestArguments();
// make sure we use an immutable copy of the constraint, so that
// it doesn't change while the filter operation is in progress
args.constraint = constraint != null ? constraint.toString() : null;
args.listener = listener;
message.obj = args;
-
+
mThreadHandler.removeMessages(FILTER_TOKEN);
mThreadHandler.removeMessages(FINISH_TOKEN);
mThreadHandler.sendMessageDelayed(message, delay);
@@ -204,7 +204,7 @@ public abstract class Filter {
public RequestHandler(Looper looper) {
super(looper);
}
-
+
/**
* Handles filtering requests by calling
* {@link Filter#performFiltering} and then sending a message
@@ -257,7 +257,7 @@ public abstract class Filter {
* {@link Filter#publishResults(CharSequence,
* android.widget.Filter.FilterResults)}
* to post the results back in the UI and then notifying the listener,
- * if any.
+ * if any.
*
* @param msg the filtering results
*/
diff --git a/src/api-impl/android/widget/Gallery.java b/src/api-impl/android/widget/Gallery.java
index 51ec56c1..0f80bbba 100644
--- a/src/api-impl/android/widget/Gallery.java
+++ b/src/api-impl/android/widget/Gallery.java
@@ -41,11 +41,11 @@ import android.view.ViewGroup;
*
* Views given to the Gallery should use {@link Gallery.LayoutParams} as their
* layout parameters type.
- *
+ *
* @attr ref android.R.styleable#Gallery_animationDuration
* @attr ref android.R.styleable#Gallery_spacing
* @attr ref android.R.styleable#Gallery_gravity
- *
+ *
* @deprecated This widget is no longer supported. Other horizontally scrolling
* widgets include {@link HorizontalScrollView} and {@link android.support.v4.view.ViewPager}
* from the support library.
@@ -74,7 +74,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
* position, measured in milliseconds.
*/
private int mAnimationDuration = 400;
-
+
/**
* Left most edge of a child seen so far during layout.
*/
@@ -101,9 +101,9 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
* The view of the item that received the user's down touch.
*/
private View mDownTouchView;
-
+
/**
- * Executes the delta scrolls from a fling or scroll movement.
+ * Executes the delta scrolls from a fling or scroll movement.
*/
private FlingRunnable mFlingRunnable = new FlingRunnable();
@@ -118,7 +118,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
selectionChanged();
}
};
-
+
/**
* When fling runnable runs, it resets this to false. Any method along the
* path until the end of its run() can set this to true to abort any
@@ -126,12 +126,12 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
* rightmost item, we will set this to true.
*/
private boolean mShouldStopFling;
-
+
/**
* The currently selected item's child.
*/
private View mSelectedChild;
-
+
/**
* Whether to continuously callback on the item selected listener during a
* fling.
@@ -144,7 +144,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
private boolean mShouldCallbackOnUnselectedItemClick = true;
/**
- * If true, do not callback to item selected listener.
+ * If true, do not callback to item selected listener.
*/
private boolean mSuppressSelectionChanged;
@@ -159,7 +159,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
* the children are ordered right to left.
*/
private boolean mIsRtl = true;
-
+
/**
* Offset between the center of the selected child view and the center of the Gallery.
* Used to reset position correctly during layout.
@@ -180,7 +180,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
public Gallery(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
-
+
mGestureDetector = new GestureDetector(context, this);
mGestureDetector.setIsLongpressEnabled(true);
@@ -201,13 +201,13 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
int spacing =
a.getDimensionPixelOffset(com.android.internal.R.styleable.Gallery_spacing, 0);
setSpacing(spacing);
-
+
a.recycle();
// We draw the selected item last (because otherwise the item to the
// right overlaps it)
// mGroupFlags |= FLAG_USE_CHILD_DRAWING_ORDER;
-
+
// mGroupFlags |= FLAG_SUPPORT_STATIC_TRANSFORMATIONS;
}
@@ -216,7 +216,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
* while the items are being flinged. If false, only the final selected item
* will cause the callback. If true, all items between the first and the
* final will cause callbacks.
- *
+ *
* @param shouldCallback Whether or not to callback on the listener while
* the items are being flinged.
*/
@@ -228,7 +228,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
* Whether or not to callback when an item that is not selected is clicked.
* If false, the item will become selected (and re-centered). If true, the
* {@link #getOnItemClickListener()} will get the callback.
- *
+ *
* @param shouldCallback Whether or not to callback on the listener when a
* item that is not selected is clicked.
* @hide
@@ -236,14 +236,14 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
public void setCallbackOnUnselectedItemClick(boolean shouldCallback) {
mShouldCallbackOnUnselectedItemClick = shouldCallback;
}
-
+
/**
* Sets how long the transition animation should run when a child view
* changes position. Only relevant if animation is turned on.
- *
+ *
* @param animationDurationMillis The duration of the transition, in
* milliseconds.
- *
+ *
* @attr ref android.R.styleable#Gallery_animationDuration
*/
public void setAnimationDuration(int animationDurationMillis) {
@@ -252,9 +252,9 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
/**
* Sets the spacing between items in a Gallery
- *
+ *
* @param spacing The spacing in pixels between items in the Gallery
- *
+ *
* @attr ref android.R.styleable#Gallery_spacing
*/
public void setSpacing(int spacing) {
@@ -305,7 +305,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
super.onLayout(changed, l, t, r, b);
-
+
/*
* Remember that we are in layout to prevent more layout request from
* being generated.
@@ -323,7 +323,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
/**
* Tracks a motion scroll. In reality, this is used to do just about any
* movement to items (touch scroll, arrow-key scroll, set an item as selected).
- *
+ *
* @param deltaX Change in X from the previous event.
*/
void trackMotionScroll(int deltaX) {
@@ -331,20 +331,20 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
if (getChildCount() == 0) {
return;
}
-
- boolean toLeft = deltaX < 0;
-
+
+ boolean toLeft = deltaX < 0;
+
int limitedDeltaX = getLimitedMotionScrollAmount(toLeft, deltaX);
if (limitedDeltaX != deltaX) {
// The above call returned a limited amount, so stop any scrolls/flings
mFlingRunnable.endFling(false);
onFinishedMovement();
}
-
+
offsetChildrenLeftAndRight(limitedDeltaX);
-
+
detachOffScreenChildren(toLeft);
-
+
if (toLeft) {
// If moved left, there will be empty space on the right
fillToGalleryRight();
@@ -352,10 +352,10 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
// Similarly, empty space on the left
fillToGalleryLeft();
}
-
+
// Clear unused views
mRecycler.clear();
-
+
setSelectionToCenterChild();
final View selChild = mSelectedChild;
@@ -374,17 +374,17 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
int getLimitedMotionScrollAmount(boolean motionToLeft, int deltaX) {
int extremeItemPosition = motionToLeft != mIsRtl ? mItemCount - 1 : 0;
View extremeChild = getChildAt(extremeItemPosition - mFirstPosition);
-
+
if (extremeChild == null) {
return deltaX;
}
-
+
int extremeChildCenter = getCenterOfView(extremeChild);
int galleryCenter = getCenterOfGallery();
-
+
if (motionToLeft) {
if (extremeChildCenter <= galleryCenter) {
-
+
// The extreme child is past his boundary point!
return 0;
}
@@ -395,18 +395,18 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
return 0;
}
}
-
+
int centerDifference = galleryCenter - extremeChildCenter;
return motionToLeft
? Math.max(centerDifference, deltaX)
- : Math.min(centerDifference, deltaX);
+ : Math.min(centerDifference, deltaX);
}
/**
* Offset the horizontal location of all children of this view by the
* specified number of pixels.
- *
+ *
* @param offset the number of pixels to offset
*/
private void offsetChildrenLeftAndRight(int offset) {
@@ -414,24 +414,24 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
getChildAt(i).offsetLeftAndRight(offset);
}
}
-
+
/**
* @return The center of this Gallery.
*/
private int getCenterOfGallery() {
return (getWidth() - paddingLeft - paddingRight) / 2 + paddingLeft;
}
-
+
/**
* @return The center of the given view.
*/
private static int getCenterOfView(View view) {
return view.getLeft() + view.getWidth() / 2;
}
-
+
/**
* Detaches children that are off the screen (i.e.: Gallery bounds).
- *
+ *
* @param toLeft Whether to detach children to the left of the Gallery, or
* to the right.
*/
@@ -479,23 +479,23 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
for (int i = start + count - 1; i >= start; i--) {
detachViewFromParent(i);
}
-
+
if (toLeft != mIsRtl) {
mFirstPosition += count;
}
}
-
+
/**
* Scrolls the items so that the selected item is in its 'slot' (its center
* is the gallery's center).
*/
private void scrollIntoSlots() {
-
+
if (getChildCount() == 0 || mSelectedChild == null) return;
-
+
int selectedCenter = getCenterOfView(mSelectedChild);
int targetCenter = getCenterOfGallery();
-
+
int scrollAmount = targetCenter - selectedCenter;
if (scrollAmount != 0) {
mFlingRunnable.startUsingDistance(scrollAmount);
@@ -507,14 +507,14 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
private void onFinishedMovement() {
if (mSuppressSelectionChanged) {
mSuppressSelectionChanged = false;
-
+
// We haven't been callbacking during the fling, so do it now
super.selectionChanged();
}
mSelectedCenterOffset = 0;
invalidate();
}
-
+
@Override
void selectionChanged() {
if (!mSuppressSelectionChanged) {
@@ -541,15 +541,15 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
int closestEdgeDistance = Integer.MAX_VALUE;
int newSelectedChildIndex = 0;
for (int i = getChildCount() - 1; i >= 0; i--) {
-
+
View child = getChildAt(i);
-
+
if (child.getLeft() <= galleryCenter && child.getRight() >= galleryCenter) {
// This child is in the center
newSelectedChildIndex = i;
break;
}
-
+
int childClosestEdgeDistance = Math.min(Math.abs(child.getLeft() - galleryCenter),
Math.abs(child.getRight() - galleryCenter));
if (childClosestEdgeDistance < closestEdgeDistance) {
@@ -557,9 +557,9 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
newSelectedChildIndex = i;
}
}
-
+
int newPos = mFirstPosition + newSelectedChildIndex;
-
+
if (newPos != mSelectedPosition) {
setSelectedPositionInt(newPos);
setNextSelectedPositionInt(newPos);
@@ -572,7 +572,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
*
* We layout rarely, most of the time {@link #trackMotionScroll(int)} takes
* care of repositioning, adding, and removing children.
- *
+ *
* @param delta Change in the selected position. +1 means the selection is
* moving to the right, so views are scrolling to the left. -1
* means the selection is moving to the left.
@@ -617,14 +617,14 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
mLeftMost = 0;
// Make selected view and center it
-
+
/*
* mFirstPosition will be decreased as we add views to the left later
* on. The 0 for x will be offset in a couple lines down.
- */
+ */
mFirstPosition = mSelectedPosition;
View sel = makeAndAddView(mSelectedPosition, 0, 0, true);
-
+
// Put the selected child in the center
int selectedOffset = childrenLeft + (childrenWidth / 2) - (sel.getWidth() / 2) +
mSelectedCenterOffset;
@@ -632,7 +632,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
fillToGalleryRight();
fillToGalleryLeft();
-
+
// Flush any cached views that did not get reused above
mRecycler.clear();
@@ -642,7 +642,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
mDataChanged = false;
mNeedSync = false;
setNextSelectedPositionInt(mSelectedPosition);
-
+
updateSelectedItemMetadata();
}
@@ -698,7 +698,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
curRightEdge = prevIterationView.getLeft() - itemSpacing;
} else {
// No children available!
- curPosition = 0;
+ curPosition = 0;
curRightEdge = getRight() - getLeft() - paddingRight;
mShouldStopFling = true;
}
@@ -709,13 +709,13 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
// Remember some state
mFirstPosition = curPosition;
-
+
// Set state for next iteration
curRightEdge = prevIterationView.getLeft() - itemSpacing;
curPosition--;
}
}
-
+
private void fillToGalleryRight() {
if (mIsRtl) {
fillToGalleryRightRtl();
@@ -760,12 +760,12 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
int galleryRight = getRight() - getLeft() - paddingRight;
int numChildren = getChildCount();
int numItems = mItemCount;
-
+
// Set state for initial iteration
View prevIterationView = getChildAt(numChildren - 1);
int curPosition;
int curLeftEdge;
-
+
if (prevIterationView != null) {
curPosition = mFirstPosition + numChildren;
curLeftEdge = prevIterationView.getRight() + itemSpacing;
@@ -774,7 +774,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
curLeftEdge = paddingLeft;
mShouldStopFling = true;
}
-
+
while (curLeftEdge < galleryRight && curPosition < numItems) {
prevIterationView = makeAndAddView(curPosition, curPosition - mSelectedPosition,
curLeftEdge, true);
@@ -790,7 +790,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
* getting a new one from the adapter. If we are animating, make sure there
* is enough information in the view's layout parameters to animate from the
* old to new positions.
- *
+ *
* @param position Position in the gallery for the view to obtain
* @param offset Offset from the selected position
* @param x X-coordinate indicating where this view should be placed. This
@@ -808,9 +808,9 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
if (child != null) {
// Can reuse an existing view
int childLeft = child.getLeft();
-
+
// Remember left and right edges of where views have been placed
- mRightMost = Math.max(mRightMost, childLeft
+ mRightMost = Math.max(mRightMost, childLeft
+ child.getMeasuredWidth());
mLeftMost = Math.min(mLeftMost, childLeft);
@@ -833,7 +833,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
/**
* Helper for makeAndAddView to set the position of a view and fill out its
* layout parameters.
- *
+ *
* @param child The view to position
* @param offset Offset from the selected position
* @param x X-coordinate indicating where this view should be placed. This
@@ -885,14 +885,14 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
/**
* Figure out vertical placement based on mGravity
- *
+ *
* @param child Child to place
* @return Where the top of the child should be
*/
private int calculateTop(View child, boolean duringLayout) {
int myHeight = duringLayout ? getMeasuredHeight() : getHeight();
- int childHeight = duringLayout ? child.getMeasuredHeight() : child.getHeight();
-
+ int childHeight = duringLayout ? child.getMeasuredHeight() : child.getHeight();
+
int childTop = 0;
switch (mGravity) {
@@ -924,15 +924,15 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
} else if (action == MotionEvent.ACTION_CANCEL) {
onCancel();
}
-
+
return retValue;
}
-
+
@Override
public boolean onSingleTapUp(MotionEvent e) {
if (mDownTouchPosition >= 0) {
-
+
// An item tap should make it selected, so scroll to this child.
scrollToChild(mDownTouchPosition - mFirstPosition);
@@ -941,29 +941,29 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
performItemClick(mDownTouchView, mDownTouchPosition, mAdapter
.getItemId(mDownTouchPosition));
}
-
+
return true;
}
-
+
return false;
}
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
-
+
if (!mShouldCallbackDuringFling) {
// We want to suppress selection changes
-
+
// Remove any future code to set mSuppressSelectionChanged = false
removeCallbacks(mDisableSuppressSelectionChangedRunnable);
// This will get reset once we scroll into slots
if (!mSuppressSelectionChanged) mSuppressSelectionChanged = true;
}
-
+
// Fling the gallery!
mFlingRunnable.startUsingVelocity((int) -velocityX);
-
+
return true;
}
@@ -1014,7 +1014,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
// Get the item's view that was touched
mDownTouchPosition = pointToPosition((int) e.getX(), (int) e.getY());
-
+
if (mDownTouchPosition >= 0) {
mDownTouchView = getChildAt(mDownTouchPosition - mFirstPosition);
mDownTouchView.setPressed(true);
@@ -1091,7 +1091,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
return handled;
}
-
+
public boolean dispatchKeyEvent(KeyEvent event) {
// Gallery steals all key events
// return event.dispatch(this, null, null);
@@ -1100,16 +1100,16 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
private boolean scrollToChild(int childPosition) {
View child = getChildAt(childPosition);
-
+
if (child != null) {
int distance = getCenterOfGallery() - getCenterOfView(child);
mFlingRunnable.startUsingDistance(distance);
return true;
}
-
+
return false;
}
-
+
@Override
void setSelectedPositionInt(int position) {
super.setSelectedPositionInt(position);
@@ -1119,7 +1119,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
}
private void updateSelectedItemMetadata() {
-
+
View oldSelectedChild = mSelectedChild;
View child = mSelectedChild = getChildAt(mSelectedPosition - mFirstPosition);
@@ -1140,18 +1140,18 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
// Make sure its drawable state doesn't contain 'selected'
oldSelectedChild.setSelected(false);
-
+
// Make sure it is not focusable anymore, since otherwise arrow keys
// can make this one be focused
oldSelectedChild.setFocusable(false);
}
-
+
}
-
+
/**
* Describes how the child views are aligned.
* @param gravity
- *
+ *
* @attr ref android.R.styleable#Gallery_gravity
*/
public void setGravity(int gravity)
@@ -1164,10 +1164,10 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
protected int getChildDrawingOrder(int childCount, int i) {
int selectedIndex = mSelectedPosition - mFirstPosition;
-
+
// Just to be safe
if (selectedIndex < 0) return i;
-
+
if (i == childCount - 1) {
// Draw the selected child last
return selectedIndex;
@@ -1182,7 +1182,7 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) {
// super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
-
+
/*
* The gallery shows focus by focusing the selected item. So, give
* focus to our selected item instead. We steal keys from our
@@ -1234,9 +1234,9 @@ public class Gallery extends AbsSpinner implements GestureDetector.OnGestureList
public void startUsingDistance(int distance) {
if (distance == 0) return;
-
+
startCommon();
-
+
mLastFlingX = 0;
mScroller.startScroll(0, 0, -distance, 0, mAnimationDuration);
post(this);
diff --git a/src/api-impl/android/widget/HeaderViewListAdapter.java b/src/api-impl/android/widget/HeaderViewListAdapter.java
index ac206d88..deb20ecb 100644
--- a/src/api-impl/android/widget/HeaderViewListAdapter.java
+++ b/src/api-impl/android/widget/HeaderViewListAdapter.java
@@ -224,7 +224,7 @@ public class HeaderViewListAdapter implements ListAdapter, Filterable {
mAdapter.unregisterDataSetObserver(observer);
}
}
-
+
public ListAdapter getWrappedAdapter() {
return mAdapter;
}
diff --git a/src/api-impl/android/widget/ListView.java b/src/api-impl/android/widget/ListView.java
index cc3b9655..9901f21e 100644
--- a/src/api-impl/android/widget/ListView.java
+++ b/src/api-impl/android/widget/ListView.java
@@ -430,7 +430,7 @@ public class ListView extends AbsListView {
* data backing this list and for producing a view to represent an
* item in that data set.
*
- * @see #getAdapter()
+ * @see #getAdapter()
*/
@Override
public void setAdapter(ListAdapter adapter) {
@@ -1072,18 +1072,18 @@ public class ListView extends AbsListView {
private class FocusSelector implements Runnable {
private int mPosition;
private int mPositionTop;
-
+
public FocusSelector setup(int position, int top) {
mPosition = position;
mPositionTop = top;
return this;
}
-
+
public void run() {
setSelectionFromTop(mPosition, mPositionTop);
}
}
-
+
@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
if (getChildCount() > 0) {
@@ -1457,7 +1457,7 @@ public class ListView extends AbsListView {
adjustViewsUpOrDown();
}
} else if (lastPosition == mItemCount - 1) {
- adjustViewsUpOrDown();
+ adjustViewsUpOrDown();
}
}
}
@@ -1767,7 +1767,7 @@ public class ListView extends AbsListView {
&& focusLayoutRestoreView.getWindowToken() != null) {
// focusLayoutRestoreView.onFinishTemporaryDetach();
}
-
+
mLayoutMode = LAYOUT_NORMAL;
mDataChanged = false;
if (mPositionScrollAfterLayout != null) {
@@ -1979,7 +1979,7 @@ public class ListView extends AbsListView {
/**
* Makes the item at the supplied position selected.
- *
+ *
* @param position the position of the item to select
*/
@Override
@@ -2924,7 +2924,7 @@ public class ListView extends AbsListView {
/**
* Determine the distance to the nearest edge of a view in a particular
* direction.
- *
+ *
* @param descendant A descendant of this list.
* @return The distance, or 0 if the nearest edge is already on screen.
*/
@@ -3174,7 +3174,7 @@ public class ListView extends AbsListView {
final int listBottom = getBottom() - getTop() - effectivePaddingBottom + getScrollY();
if (!mStackFromBottom) {
int bottom = 0;
-
+
// Draw top divider or header for overscroll
final int scrollY = getScrollY();
if (count > 0 && scrollY < 0) {
@@ -3271,7 +3271,7 @@ public class ListView extends AbsListView {
}
}
}
-
+
if (count > 0 && scrollY > 0) {
if (drawOverscrollFooter) {
final int absListBottom = getBottom();
@@ -3345,7 +3345,7 @@ public class ListView extends AbsListView {
public int getDividerHeight() {
return mDividerHeight;
}
-
+
/**
* Sets the height of the divider that will be drawn between each item in the list. Calling
* this will override the intrinsic height as set by {@link #setDivider(Drawable)}
@@ -3403,7 +3403,7 @@ public class ListView extends AbsListView {
public boolean areFooterDividersEnabled() {
return mFooterDividersEnabled;
}
-
+
/**
* Sets the drawable that will be drawn above all other list content.
* This area can become visible when the user overscrolls the list.
@@ -3517,10 +3517,10 @@ public class ListView extends AbsListView {
/**
* Returns the set of checked items ids. The result is only valid if the
* choice mode has not been set to {@link #CHOICE_MODE_NONE}.
- *
+ *
* @return A new array which contains the id of each checked item in the
* list.
- *
+ *
* @deprecated Use {@link #getCheckedItemIds()} instead.
*/
@Deprecated
@@ -3626,4 +3626,4 @@ public class ListView extends AbsListView {
return false;
}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/widget/MultiAutoCompleteTextView.java b/src/api-impl/android/widget/MultiAutoCompleteTextView.java
index 375e7906..60ad1b06 100644
--- a/src/api-impl/android/widget/MultiAutoCompleteTextView.java
+++ b/src/api-impl/android/widget/MultiAutoCompleteTextView.java
@@ -11,4 +11,4 @@ public class MultiAutoCompleteTextView extends AutoCompleteTextView {
}
public void setTokenizer(Tokenizer tokenizer) {}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/widget/OverScroller.java b/src/api-impl/android/widget/OverScroller.java
index de9250e7..8f0634db 100644
--- a/src/api-impl/android/widget/OverScroller.java
+++ b/src/api-impl/android/widget/OverScroller.java
@@ -783,7 +783,7 @@ public class OverScroller {
}
void notifyEdgeReached(int start, int end, int over) {
- // mState is used to detect successive notifications
+ // mState is used to detect successive notifications
if (mState == SPLINE) {
mOver = over;
mStartTime = AnimationUtils.currentAnimationTimeMillis();
@@ -882,8 +882,8 @@ public class OverScroller {
final float t = (float) (currentTime) / mDuration;
final float t2 = t * t;
final float sign = Math.signum(mVelocity);
- distance = sign * mOver * (3.0f * t2 - 2.0f * t * t2);
- mCurrVelocity = sign * mOver * 6.0f * (- t + t2);
+ distance = sign * mOver * (3.0f * t2 - 2.0f * t * t2);
+ mCurrVelocity = sign * mOver * 6.0f * (- t + t2);
break;
}
}
diff --git a/src/api-impl/android/widget/PopupMenu.java b/src/api-impl/android/widget/PopupMenu.java
index 0cfad00f..078ed7c5 100644
--- a/src/api-impl/android/widget/PopupMenu.java
+++ b/src/api-impl/android/widget/PopupMenu.java
@@ -147,7 +147,7 @@ public class PopupMenu {
* calling {@code popupMenu.getMenuInflater().inflate(menuRes, popupMenu.getMenu())}.
*
* @param menuRes Menu resource to inflate
- * @throws Exception
+ * @throws Exception
*/
public void inflate(int menuRes) throws Exception {
getMenuInflater().inflate(menuRes, getMenu());
@@ -336,7 +336,7 @@ public class PopupMenu {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'clearHeader'");
}
-
+
}
private class MenuItemImpl implements MenuItem {
diff --git a/src/api-impl/android/widget/RadioButton.java b/src/api-impl/android/widget/RadioButton.java
index 4c3fe32e..a90ee095 100644
--- a/src/api-impl/android/widget/RadioButton.java
+++ b/src/api-impl/android/widget/RadioButton.java
@@ -36,4 +36,4 @@ public class RadioButton extends CompoundButton {
@Override
public void setTextSize(float size) {}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/widget/RelativeLayout.java b/src/api-impl/android/widget/RelativeLayout.java
index f872b67f..73e3e800 100644
--- a/src/api-impl/android/widget/RelativeLayout.java
+++ b/src/api-impl/android/widget/RelativeLayout.java
@@ -1672,7 +1672,7 @@ public class RelativeLayout extends ViewGroup {
private static final int POOL_LIMIT = 100;
// private static final SynchronizedPool sPool =
// new SynchronizedPool(POOL_LIMIT);
-
+
static Node acquire(View view) {
Node node;// = sPool.acquire();
// if (node == null) {
@@ -1681,7 +1681,7 @@ public class RelativeLayout extends ViewGroup {
node.view = view;
return node;
}
-
+
void release() {
view = null;
dependents.clear();
diff --git a/src/api-impl/android/widget/Scroller.java b/src/api-impl/android/widget/Scroller.java
index 8d03e915..5e60a505 100644
--- a/src/api-impl/android/widget/Scroller.java
+++ b/src/api-impl/android/widget/Scroller.java
@@ -168,7 +168,7 @@ public class Scroller {
/**
* The amount of friction applied to flings. The default value
* is {@link ViewConfiguration#getScrollFriction}.
- *
+ *
* @param friction A scalar dimension-less value representing the coefficient of
* friction.
*/
@@ -176,7 +176,7 @@ public class Scroller {
mDeceleration = computeDeceleration(friction);
mFlingFriction = friction;
}
-
+
private float computeDeceleration(float friction) {
return SensorManager.GRAVITY_EARTH // g (m/s^2)
* 39.37f // inch/meter
@@ -185,51 +185,51 @@ public class Scroller {
}
/**
- *
+ *
* Returns whether the scroller has finished scrolling.
- *
+ *
* @return True if the scroller has finished scrolling, false otherwise.
*/
public final boolean isFinished() {
return mFinished;
}
-
+
/**
* Force the finished field to a particular value.
- *
+ *
* @param finished The new finished value.
*/
public final void forceFinished(boolean finished) {
mFinished = finished;
}
-
+
/**
* Returns how long the scroll event will take, in milliseconds.
- *
+ *
* @return The duration of the scroll in milliseconds.
*/
public final int getDuration() {
return mDuration;
}
-
+
/**
- * Returns the current X offset in the scroll.
- *
+ * Returns the current X offset in the scroll.
+ *
* @return The new X offset as an absolute distance from the origin.
*/
public final int getCurrX() {
return mCurrX;
}
-
+
/**
- * Returns the current Y offset in the scroll.
- *
+ * Returns the current Y offset in the scroll.
+ *
* @return The new Y offset as an absolute distance from the origin.
*/
public final int getCurrY() {
return mCurrY;
}
-
+
/**
* Returns the current velocity.
*
@@ -242,35 +242,35 @@ public class Scroller {
}
/**
- * Returns the start X offset in the scroll.
- *
+ * Returns the start X offset in the scroll.
+ *
* @return The start X offset as an absolute distance from the origin.
*/
public final int getStartX() {
return mStartX;
}
-
+
/**
- * Returns the start Y offset in the scroll.
- *
+ * Returns the start Y offset in the scroll.
+ *
* @return The start Y offset as an absolute distance from the origin.
*/
public final int getStartY() {
return mStartY;
}
-
+
/**
* Returns where the scroll will end. Valid only for "fling" scrolls.
- *
+ *
* @return The final X offset as an absolute distance from the origin.
*/
public final int getFinalX() {
return mFinalX;
}
-
+
/**
* Returns where the scroll will end. Valid only for "fling" scrolls.
- *
+ *
* @return The final Y offset as an absolute distance from the origin.
*/
public final int getFinalY() {
@@ -280,13 +280,13 @@ public class Scroller {
/**
* Call this when you want to know the new location. If it returns true,
* the animation is not yet finished.
- */
+ */
public boolean computeScrollOffset() {
if (mFinished) {
return false;
}
int timePassed = (int)(AnimationUtils.currentAnimationTimeMillis() - mStartTime);
-
+
if (timePassed < mDuration) {
switch (mMode) {
case SCROLL_MODE:
@@ -308,12 +308,12 @@ public class Scroller {
distanceCoef = d_inf + (t - t_inf) * velocityCoef;
}
mCurrVelocity = velocityCoef * mDistance / mDuration * 1000.0f;
-
+
mCurrX = mStartX + Math.round(distanceCoef * (mFinalX - mStartX));
// Pin to mMinX <= mCurrX <= mMaxX
mCurrX = Math.min(mCurrX, mMaxX);
mCurrX = Math.max(mCurrX, mMinX);
-
+
mCurrY = mStartY + Math.round(distanceCoef * (mFinalY - mStartY));
// Pin to mMinY <= mCurrY <= mMaxY
mCurrY = Math.min(mCurrY, mMaxY);
@@ -331,12 +331,12 @@ public class Scroller {
}
return true;
}
-
+
/**
* Start scrolling by providing a starting point and the distance to travel.
* The scroll will use the default value of 250 milliseconds for the
* duration.
- *
+ *
* @param startX Starting horizontal scroll offset in pixels. Positive
* numbers will scroll the content to the left.
* @param startY Starting vertical scroll offset in pixels. Positive numbers
@@ -353,7 +353,7 @@ public class Scroller {
/**
* Start scrolling by providing a starting point, the distance to travel,
* and the duration of the scroll.
- *
+ *
* @param startX Starting horizontal scroll offset in pixels. Positive
* numbers will scroll the content to the left.
* @param startY Starting vertical scroll offset in pixels. Positive numbers
@@ -381,7 +381,7 @@ public class Scroller {
/**
* Start scrolling based on a fling gesture. The distance travelled will
* depend on the initial velocity of the fling.
- *
+ *
* @param startX Starting point of the scroll (X)
* @param startY Starting point of the scroll (Y)
* @param velocityX Initial velocity of the fling (X) measured in pixels per
@@ -418,7 +418,7 @@ public class Scroller {
mMode = FLING_MODE;
mFinished = false;
float velocity = (float) Math.hypot(velocityX, velocityY);
-
+
mVelocity = velocity;
mDuration = getSplineFlingDuration(velocity);
mStartTime = AnimationUtils.currentAnimationTimeMillis();
@@ -428,7 +428,7 @@ public class Scroller {
float coeffY = velocity == 0 ? 1.0f : velocityY / velocity;
double totalDistance = getSplineFlingDistance(velocity);
mDistance = (int) (totalDistance * Math.signum(velocity));
-
+
mMinX = minX;
mMaxX = maxX;
mMinY = minY;
@@ -437,13 +437,13 @@ public class Scroller {
// Pin to mMinX <= mFinalX <= mMaxX
mFinalX = Math.min(mFinalX, mMaxX);
mFinalX = Math.max(mFinalX, mMinX);
-
+
mFinalY = startY + (int) Math.round(totalDistance * coeffY);
// Pin to mMinY <= mFinalY <= mMaxY
mFinalY = Math.min(mFinalY, mMaxY);
mFinalY = Math.max(mFinalY, mMinY);
}
-
+
private double getSplineDeceleration(float velocity) {
return Math.log(INFLEXION * Math.abs(velocity) / (mFlingFriction * mPhysicalCoeff));
}
@@ -472,7 +472,7 @@ public class Scroller {
mCurrY = mFinalY;
mFinished = true;
}
-
+
/**
* Extend the scroll animation. This allows a running animation to scroll
* further and longer, when used with {@link #setFinalX(int)} or {@link #setFinalY(int)}.
diff --git a/src/api-impl/android/widget/Space.java b/src/api-impl/android/widget/Space.java
index bfd66e91..d83a5c21 100644
--- a/src/api-impl/android/widget/Space.java
+++ b/src/api-impl/android/widget/Space.java
@@ -14,4 +14,4 @@ public class Space extends View {
super(context, attributeSet);
}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/android/widget/Spinner.java b/src/api-impl/android/widget/Spinner.java
index ca13afa4..b694379a 100644
--- a/src/api-impl/android/widget/Spinner.java
+++ b/src/api-impl/android/widget/Spinner.java
@@ -60,4 +60,4 @@ public class Spinner extends AbsSpinner {
@Override
void layout(int delta, boolean animate) {}
-}
\ No newline at end of file
+}
diff --git a/src/api-impl/com/android/internal/Manifest.java b/src/api-impl/com/android/internal/Manifest.java
index 9fe47da4..d6badabc 100644
--- a/src/api-impl/com/android/internal/Manifest.java
+++ b/src/api-impl/com/android/internal/Manifest.java
@@ -10,19 +10,19 @@ package com.android.internal;
public final class Manifest {
public static final class permission {
/** Allow an application to read and write the cache partition.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String ACCESS_CACHE_FILESYSTEM="android.permission.ACCESS_CACHE_FILESYSTEM";
/** Allows read/write access to the "properties" table in the checkin
database, to change values that get uploaded.
- Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String ACCESS_CHECKIN_PROPERTIES="android.permission.ACCESS_CHECKIN_PROPERTIES";
/** Allows an app to access approximate location.
Protection level: dangerous
-
+
*/
public static final String ACCESS_COARSE_LOCATION="android.permission.ACCESS_COARSE_LOCATION";
/** Allows the holder to access content providers from outside an ApplicationThread.
@@ -30,17 +30,17 @@ public final class Manifest {
in particular ActivityManagerService#getContentProviderExternal(String) and
ActivityManagerService#removeContentProviderExternal(String).
@hide
-
+
*/
public static final String ACCESS_CONTENT_PROVIDERS_EXTERNALLY="android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY";
/** Allows an application to provision and access DRM certificates
- @hide This is not a third-party API (intended for system apps).
+ @hide This is not a third-party API (intended for system apps).
*/
@android.annotation.SystemApi
public static final String ACCESS_DRM_CERTIFICATES="android.permission.ACCESS_DRM_CERTIFICATES";
/** Allows an app to access precise location.
Protection level: dangerous
-
+
*/
public static final String ACCESS_FINE_LOCATION="android.permission.ACCESS_FINE_LOCATION";
/** Allows access to FM
@@ -52,129 +52,129 @@ public final class Manifest {
modifying a call
Protection level: signature|system
@hide
-
+
*/
public static final String ACCESS_IMS_CALL_SERVICE="android.permission.ACCESS_IMS_CALL_SERVICE";
/** Allows an application to use InputFlinger's low level features.
- @hide
+ @hide
*/
public static final String ACCESS_INPUT_FLINGER="android.permission.ACCESS_INPUT_FLINGER";
/** Allows access to keyguard secure storage. Only allowed for system processes.
- @hide
+ @hide
*/
public static final String ACCESS_KEYGUARD_SECURE_STORAGE="android.permission.ACCESS_KEYGUARD_SECURE_STORAGE";
/** Allows an application to access extra location provider commands
Protection level: normal
-
+
*/
public static final String ACCESS_LOCATION_EXTRA_COMMANDS="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS";
/** Allows an application to create mock location providers for testing.
Protection level: signature
@hide
-
+
*/
@android.annotation.SystemApi
public static final String ACCESS_MOCK_LOCATION="android.permission.ACCESS_MOCK_LOCATION";
/** Allows an application to access the MTP USB kernel driver.
For use only by the device side MTP implementation.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String ACCESS_MTP="android.permission.ACCESS_MTP";
/** Allows an application to listen for network condition observations.
- @hide This is not a third-party API (intended for system apps).
+ @hide This is not a third-party API (intended for system apps).
*/
@android.annotation.SystemApi
public static final String ACCESS_NETWORK_CONDITIONS="android.permission.ACCESS_NETWORK_CONDITIONS";
/** Allows applications to access information about networks
Protection level: normal
-
+
*/
public static final String ACCESS_NETWORK_STATE="android.permission.ACCESS_NETWORK_STATE";
/** Allows an application to read the current set of notifications, including
any metadata and intents attached.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String ACCESS_NOTIFICATIONS="android.permission.ACCESS_NOTIFICATIONS";
/** Marker permission for applications that wish to access notification policy.
Protection level: normal
-
+
*/
public static final String ACCESS_NOTIFICATION_POLICY="android.permission.ACCESS_NOTIFICATION_POLICY";
/** @hide Allows querying state of PersistentDataBlock
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
public static final String ACCESS_PDB_STATE="android.permission.ACCESS_PDB_STATE";
/** Allows an application to use SurfaceFlinger's low level features.
Not for use by third-party applications.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String ACCESS_SURFACE_FLINGER="android.permission.ACCESS_SURFACE_FLINGER";
/** Allows an application to interact with the currently active
{@link android.service.voice.VoiceInteractionService}.
- @hide
+ @hide
*/
public static final String ACCESS_VOICE_INTERACTION_SERVICE="android.permission.ACCESS_VOICE_INTERACTION_SERVICE";
/** Allows applications to access information about Wi-Fi networks.
Protection level: normal
-
+
*/
public static final String ACCESS_WIFI_STATE="android.permission.ACCESS_WIFI_STATE";
- /** @hide
+ /** @hide
*/
public static final String ACCESS_WIMAX_STATE="android.permission.ACCESS_WIMAX_STATE";
/** Allows applications to call into AccountAuthenticators.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String ACCOUNT_MANAGER="android.permission.ACCOUNT_MANAGER";
/** Allows an application to add voicemails into the system.
Protection level: dangerous
-
+
*/
public static final String ADD_VOICEMAIL="com.android.voicemail.permission.ADD_VOICEMAIL";
/** Allows an application to use any media decoder when decoding for playback
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String ALLOW_ANY_CODEC_FOR_PLAYBACK="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK";
/** Allows access to ASEC non-destructive API calls
- @hide
+ @hide
*/
public static final String ASEC_ACCESS="android.permission.ASEC_ACCESS";
/** Allows creation of ASEC volumes
- @hide
+ @hide
*/
public static final String ASEC_CREATE="android.permission.ASEC_CREATE";
/** Allows destruction of ASEC volumes
- @hide
+ @hide
*/
public static final String ASEC_DESTROY="android.permission.ASEC_DESTROY";
/** Allows mount / unmount of ASEC volumes
- @hide
+ @hide
*/
public static final String ASEC_MOUNT_UNMOUNT="android.permission.ASEC_MOUNT_UNMOUNT";
/** Allows rename of ASEC volumes
- @hide
+ @hide
*/
public static final String ASEC_RENAME="android.permission.ASEC_RENAME";
/** Allows an application to control the backup and restore process.
Not for use by third-party applications.
- @hide pending API council
+ @hide pending API council
*/
@android.annotation.SystemApi
public static final String BACKUP="android.permission.BACKUP";
- /** Allows an application to collect battery statistics
+ /** Allows an application to collect battery statistics
*/
@android.annotation.SystemApi
public static final String BATTERY_STATS="android.permission.BATTERY_STATS";
/** Must be required by an {@link android.accessibilityservice.AccessibilityService},
to ensure that only the system can bind to it.
Protection level: signature
-
+
*/
public static final String BIND_ACCESSIBILITY_SERVICE="android.permission.BIND_ACCESSIBILITY_SERVICE";
/** Allows an application to tell the AppWidget service which application
@@ -182,11 +182,11 @@ public final class Manifest {
picks an AppWidget to go into a particular host, thereby giving that
host application access to the private data from the AppWidget app.
An application that has this permission should honor that contract.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String BIND_APPWIDGET="android.permission.BIND_APPWIDGET";
- /** @deprecated Use {@link android.Manifest.permission#BIND_CARRIER_SERVICES} instead
+ /** @deprecated Use {@link android.Manifest.permission#BIND_CARRIER_SERVICES} instead
*/
@Deprecated
public static final String BIND_CARRIER_MESSAGING_SERVICE="android.permission.BIND_CARRIER_MESSAGING_SERVICE";
@@ -194,20 +194,20 @@ public final class Manifest {
have this permission. Carrier apps should use this permission to protect
their services that only the system is allowed to bind to.
Protection level: system|signature
-
+
*/
public static final String BIND_CARRIER_SERVICES="android.permission.BIND_CARRIER_SERVICES";
/** Must be required by a {@link
android.service.chooser.ChooserTargetService}, to ensure that
only the system can bind to it.
Protection level: signature
-
+
*/
public static final String BIND_CHOOSER_TARGET_SERVICE="android.permission.BIND_CHOOSER_TARGET_SERVICE";
/** Must be required by a {@link
android.service.notification.ConditionProviderService},
to ensure that only the system can bind to it.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String BIND_CONDITION_PROVIDER_SERVICE="android.permission.BIND_CONDITION_PROVIDER_SERVICE";
@@ -215,8 +215,8 @@ public final class Manifest {
to ensure that only the system can bind to it.
@deprecated {@link android.telecom.ConnectionService}s should require
android.permission.BIND_TELECOM_CONNECTION_SERVICE instead.
-
- @hide
+
+ @hide
*/
@Deprecated
@android.annotation.SystemApi
@@ -224,195 +224,195 @@ public final class Manifest {
/** Must be required by device administration receiver, to ensure that only the
system can interact with it.
Protection level: signature
-
+
*/
public static final String BIND_DEVICE_ADMIN="android.permission.BIND_DEVICE_ADMIN";
/** @hide Allows an application to execute contacts directory search.
This should only be used by ContactsProvider.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String BIND_DIRECTORY_SEARCH="android.permission.BIND_DIRECTORY_SEARCH";
/** Must be required by an {@link android.service.dreams.DreamService},
to ensure that only the system can bind to it.
Protection level: signature
-
+
*/
public static final String BIND_DREAM_SERVICE="android.permission.BIND_DREAM_SERVICE";
/** Must be required by a {@link android.telecom.InCallService},
to ensure that only the system can bind to it.
Protection level: system|signature
-
+
*/
public static final String BIND_INCALL_SERVICE="android.permission.BIND_INCALL_SERVICE";
/** Must be required by an {@link android.inputmethodservice.InputMethodService},
to ensure that only the system can bind to it.
Protection level: signature
-
+
*/
public static final String BIND_INPUT_METHOD="android.permission.BIND_INPUT_METHOD";
/** Must be required by intent filter verifier receiver, to ensure that only the
system can interact with it.
@hide
-
+
*/
public static final String BIND_INTENT_FILTER_VERIFIER="android.permission.BIND_INTENT_FILTER_VERIFIER";
/** Allows the system to bind to an application's task services
- @hide
+ @hide
*/
public static final String BIND_JOB_SERVICE="android.permission.BIND_JOB_SERVICE";
/** Private permission, to restrict who can bring up a dialog to add a new
keyguard widget
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String BIND_KEYGUARD_APPWIDGET="android.permission.BIND_KEYGUARD_APPWIDGET";
/** Must be required by an {@link android.media.midi.MidiDeviceService},
to ensure that only the system can bind to it.
Protection level: signature
-
+
*/
public static final String BIND_MIDI_DEVICE_SERVICE="android.permission.BIND_MIDI_DEVICE_SERVICE";
/** Must be required by a {@link android.nfc.cardemulation.HostApduService}
or {@link android.nfc.cardemulation.OffHostApduService} to ensure that only
the system can bind to it.
Protection level: signature
-
+
*/
public static final String BIND_NFC_SERVICE="android.permission.BIND_NFC_SERVICE";
/** Must be required by an {@link
android.service.notification.NotificationListenerService},
to ensure that only the system can bind to it.
Protection level: signature
-
+
*/
public static final String BIND_NOTIFICATION_LISTENER_SERVICE="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE";
/** Must be required by package verifier receiver, to ensure that only the
system can interact with it.
@hide
-
+
*/
public static final String BIND_PACKAGE_VERIFIER="android.permission.BIND_PACKAGE_VERIFIER";
/** Must be required by a {@link android.printservice.PrintService},
to ensure that only the system can bind to it.
Protection level: signature
-
+
*/
public static final String BIND_PRINT_SERVICE="android.permission.BIND_PRINT_SERVICE";
/** Must be required by the PrintSpooler to ensure that only the system can bind to it.
- @hide
+ @hide
*/
public static final String BIND_PRINT_SPOOLER_SERVICE="android.permission.BIND_PRINT_SPOOLER_SERVICE";
/** Must be required by a {@link android.widget.RemoteViewsService},
- to ensure that only the system can bind to it.
+ to ensure that only the system can bind to it.
*/
@android.annotation.SystemApi
public static final String BIND_REMOTEVIEWS="android.permission.BIND_REMOTEVIEWS";
/** Must be required by a {@link com.android.media.remotedisplay.RemoteDisplayProvider},
to ensure that only the system can bind to it.
- @hide
+ @hide
*/
public static final String BIND_REMOTE_DISPLAY="android.permission.BIND_REMOTE_DISPLAY";
/** Must be required by a {@link android.media.routing.MediaRouteService}
to ensure that only the system can interact with it.
- @hide
+ @hide
*/
public static final String BIND_ROUTE_PROVIDER="android.permission.BIND_ROUTE_PROVIDER";
/** Must be required by a {@link android.telecom.ConnectionService},
to ensure that only the system can bind to it.
Protection level: system|signature
-
+
*/
public static final String BIND_TELECOM_CONNECTION_SERVICE="android.permission.BIND_TELECOM_CONNECTION_SERVICE";
/** Must be required by a TextService (e.g. SpellCheckerService)
to ensure that only the system can bind to it.
Protection level: signature
-
+
*/
public static final String BIND_TEXT_SERVICE="android.permission.BIND_TEXT_SERVICE";
/** Must be required by an {@link
android.service.trust.TrustAgentService},
to ensure that only the system can bind to it.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String BIND_TRUST_AGENT="android.permission.BIND_TRUST_AGENT";
/** Must be required by a {@link android.media.tv.TvInputService}
to ensure that only the system can bind to it.
Protection level: signature
-
+
*/
public static final String BIND_TV_INPUT="android.permission.BIND_TV_INPUT";
/** Must be required by a {@link android.service.voice.VoiceInteractionService},
to ensure that only the system can bind to it.
Protection level: signature
-
+
*/
public static final String BIND_VOICE_INTERACTION="android.permission.BIND_VOICE_INTERACTION";
/** Must be required by a {@link android.net.VpnService},
to ensure that only the system can bind to it.
Protection level: signature
-
+
*/
public static final String BIND_VPN_SERVICE="android.permission.BIND_VPN_SERVICE";
/** Must be required by a {@link android.service.wallpaper.WallpaperService},
to ensure that only the system can bind to it.
Protection level: system|signature
-
+
*/
public static final String BIND_WALLPAPER="android.permission.BIND_WALLPAPER";
/** Allows applications to connect to paired bluetooth devices.
Protection level: normal
-
+
*/
public static final String BLUETOOTH="android.permission.BLUETOOTH";
/** Allows applications to discover and pair bluetooth devices.
Protection level: normal
-
+
*/
public static final String BLUETOOTH_ADMIN="android.permission.BLUETOOTH_ADMIN";
/** Control access to email providers exclusively for Bluetooth
@hide
-
+
*/
public static final String BLUETOOTH_MAP="android.permission.BLUETOOTH_MAP";
/** Allows applications to pair bluetooth devices without user interaction, and to
allow or disallow phonebook access or message access.
- This is not available to third party applications.
+ This is not available to third party applications.
*/
@android.annotation.SystemApi
public static final String BLUETOOTH_PRIVILEGED="android.permission.BLUETOOTH_PRIVILEGED";
/** Allows bluetooth stack to access files
@hide This should only be used by Bluetooth apk.
-
+
*/
public static final String BLUETOOTH_STACK="android.permission.BLUETOOTH_STACK";
/** Allows an application to access data from sensors that the user uses to
measure what is happening inside his/her body, such as heart rate.
-
Protection level: dangerous
+
Protection level: dangerous
*/
public static final String BODY_SENSORS="android.permission.BODY_SENSORS";
/** Required to be able to disable the device (very dangerous!).
Not for use by third-party applications.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String BRICK="android.permission.BRICK";
/** Allows an application to broadcast privileged networking requests.
-
Not for use by third-party applications. @hide
+
Not for use by third-party applications. @hide
*/
@android.annotation.SystemApi
public static final String BROADCAST_NETWORK_PRIVILEGED="android.permission.BROADCAST_NETWORK_PRIVILEGED";
/** Allows an application to broadcast a notification that an application
package has been removed.
Not for use by third-party applications.
-
+
*/
public static final String BROADCAST_PACKAGE_REMOVED="android.permission.BROADCAST_PACKAGE_REMOVED";
/** Allows an application to broadcast an SMS receipt notification.
Not for use by third-party applications.
-
+
*/
public static final String BROADCAST_SMS="android.permission.BROADCAST_SMS";
/** Allows an application to broadcast sticky intents. These are
@@ -420,29 +420,29 @@ public final class Manifest {
so that clients can quickly retrieve that data without having
to wait for the next broadcast.
Protection level: normal
-
+
*/
public static final String BROADCAST_STICKY="android.permission.BROADCAST_STICKY";
/** Allows an application to broadcast a WAP PUSH receipt notification.
Not for use by third-party applications.
-
+
*/
public static final String BROADCAST_WAP_PUSH="android.permission.BROADCAST_WAP_PUSH";
/** C2DM permission.
@hide Used internally.
-
+
*/
public static final String C2D_MESSAGE="android.intent.category.MASTER_CLEAR.permission.C2D_MESSAGE";
/** Allows an application to initiate a phone call without going through
the Dialer user interface for the user to confirm the call.
Protection level: dangerous
-
+
*/
public static final String CALL_PHONE="android.permission.CALL_PHONE";
/** Allows an application to call any phone number, including emergency
numbers, without going through the Dialer user interface for the user
to confirm the call being placed.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String CALL_PRIVILEGED="android.permission.CALL_PRIVILEGED";
@@ -454,282 +454,282 @@ public final class Manifest {
is not available, then you must modify your manifest as appropriate in order to
install on devices that don't support all camera features.
Protection level: dangerous
-
+
*/
public static final String CAMERA="android.permission.CAMERA";
/** Allows disabling the transmit-indicator LED that is normally on when
a camera is in use by an application.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String CAMERA_DISABLE_TRANSMIT_LED="android.permission.CAMERA_DISABLE_TRANSMIT_LED";
/** Allows sending the camera service notifications about system-wide events.
- @hide
+ @hide
*/
public static final String CAMERA_SEND_SYSTEM_EVENTS="android.permission.CAMERA_SEND_SYSTEM_EVENTS";
/** Allows an application to capture audio for hotword detection.
Not for use by third-party applications.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String CAPTURE_AUDIO_HOTWORD="android.permission.CAPTURE_AUDIO_HOTWORD";
/** Allows an application to capture audio output.
- Not for use by third-party applications.
+ Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String CAPTURE_AUDIO_OUTPUT="android.permission.CAPTURE_AUDIO_OUTPUT";
/** Allows an application to capture secure video output.
- Not for use by third-party applications.
+ Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String CAPTURE_SECURE_VIDEO_OUTPUT="android.permission.CAPTURE_SECURE_VIDEO_OUTPUT";
/** Allows to capture a frame of TV input hardware such as
built-in tuners and HDMI-in's.
@hide Not for use by third-party applications.
-
+
*/
@android.annotation.SystemApi
public static final String CAPTURE_TV_INPUT="android.permission.CAPTURE_TV_INPUT";
/** Allows an application to capture video output.
-
Not for use by third-party applications.
+ Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String CAPTURE_VIDEO_OUTPUT="android.permission.CAPTURE_VIDEO_OUTPUT";
/** Allows an application to filter carrier specific sms.
- @hide
+ @hide
*/
public static final String CARRIER_FILTER_SMS="android.permission.CARRIER_FILTER_SMS";
/** @hide Allows an application to change the app idle state of an app.
- Not for use by third-party applications.
+
Not for use by third-party applications.
*/
public static final String CHANGE_APP_IDLE_STATE="android.permission.CHANGE_APP_IDLE_STATE";
/** Allows applications to change the background data setting.
Not for use by third-party applications.
- @hide pending API council
+ @hide pending API council
*/
public static final String CHANGE_BACKGROUND_DATA_SETTING="android.permission.CHANGE_BACKGROUND_DATA_SETTING";
/** Allows an application to change whether an application component (other than its own) is
enabled or not.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String CHANGE_COMPONENT_ENABLED_STATE="android.permission.CHANGE_COMPONENT_ENABLED_STATE";
/** Allows an application to modify the current configuration, such
- as locale.
+ as locale.
*/
@android.annotation.SystemApi
public static final String CHANGE_CONFIGURATION="android.permission.CHANGE_CONFIGURATION";
/** @hide Allows an application to temporarily whitelist an inactive app to
access the network and acquire wakelocks.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String CHANGE_DEVICE_IDLE_TEMP_WHITELIST="android.permission.CHANGE_DEVICE_IDLE_TEMP_WHITELIST";
/** Allows applications to change network connectivity state.
Protection level: normal
-
+
*/
public static final String CHANGE_NETWORK_STATE="android.permission.CHANGE_NETWORK_STATE";
/** Allows applications to enter Wi-Fi Multicast mode.
Protection level: normal
-
+
*/
public static final String CHANGE_WIFI_MULTICAST_STATE="android.permission.CHANGE_WIFI_MULTICAST_STATE";
/** Allows applications to change Wi-Fi connectivity state.
Protection level: normal
-
+
*/
public static final String CHANGE_WIFI_STATE="android.permission.CHANGE_WIFI_STATE";
- /** @hide
+ /** @hide
*/
public static final String CHANGE_WIMAX_STATE="android.permission.CHANGE_WIMAX_STATE";
/** Allows an application to clear the caches of all installed
applications on the device.
Protection level: system|signature
-
+
*/
public static final String CLEAR_APP_CACHE="android.permission.CLEAR_APP_CACHE";
/** Allows an application to clear user data.
Not for use by third-party applications
@hide
-
+
*/
@android.annotation.SystemApi
public static final String CLEAR_APP_USER_DATA="android.permission.CLEAR_APP_USER_DATA";
/** Allows an application to control the color transforms applied to
displays system-wide.
Not for use by third-party applications.
- @hide
+ @hide
*/
public static final String CONFIGURE_DISPLAY_COLOR_TRANSFORM="android.permission.CONFIGURE_DISPLAY_COLOR_TRANSFORM";
/** Allows an application to configure and connect to Wifi displays
- @hide
+ @hide
*/
public static final String CONFIGURE_WIFI_DISPLAY="android.permission.CONFIGURE_WIFI_DISPLAY";
/** Allows a package to launch the secure full-backup confirmation UI.
ONLY the system process may hold this permission.
- @hide
+ @hide
*/
public static final String CONFIRM_FULL_BACKUP="android.permission.CONFIRM_FULL_BACKUP";
/** Allows an internal user to use privileged ConnectivityManager APIs.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String CONNECTIVITY_INTERNAL="android.permission.CONNECTIVITY_INTERNAL";
/** Allows an application to control the in-call experience.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String CONTROL_INCALL_EXPERIENCE="android.permission.CONTROL_INCALL_EXPERIENCE";
/** Allows an application to control keyguard. Only allowed for system processes.
- @hide
+ @hide
*/
public static final String CONTROL_KEYGUARD="android.permission.CONTROL_KEYGUARD";
/** Allows enabling/disabling location update notifications from
the radio.
- Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String CONTROL_LOCATION_UPDATES="android.permission.CONTROL_LOCATION_UPDATES";
/** Allows an application to control VPN.
Not for use by third-party applications.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String CONTROL_VPN="android.permission.CONTROL_VPN";
/** Allows an application to control low-level features of Wifi displays
such as opening an RTSP socket. This permission should only be used
by the display manager.
- @hide
+ @hide
*/
public static final String CONTROL_WIFI_DISPLAY="android.permission.CONTROL_WIFI_DISPLAY";
/** Must be required by default container service so that only
the system can bind to it and use it to copy
protected data to secure containers or files
accessible to the system.
- @hide
+ @hide
*/
public static final String COPY_PROTECTED_DATA="android.permission.COPY_PROTECTED_DATA";
/** @hide Allows an application to create, remove users and get the list of
users on the device. Applications holding this permission can only create restricted,
guest, and managed users. For creating other kind of users,
{@link android.Manifest.permission#MANAGE_USERS} is needed.
- This permission is not available to third party applications.
+ This permission is not available to third party applications.
*/
public static final String CREATE_USERS="android.permission.CREATE_USERS";
/** Internal permission protecting access to the encryption methods
@hide
-
+
*/
@android.annotation.SystemApi
public static final String CRYPT_KEEPER="android.permission.CRYPT_KEEPER";
/** Allows an application to delete cache files.
- Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String DELETE_CACHE_FILES="android.permission.DELETE_CACHE_FILES";
/** Allows an application to delete packages.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String DELETE_PACKAGES="android.permission.DELETE_PACKAGES";
/** Allows low-level access to power management.
Not for use by third-party applications.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String DEVICE_POWER="android.permission.DEVICE_POWER";
/** Allows applications to RW to diagnostic resources.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String DIAGNOSTIC="android.permission.DIAGNOSTIC";
/** Allows applications to disable the keyguard if it is not secure.
Protection level: normal
-
+
*/
public static final String DISABLE_KEYGUARD="android.permission.DISABLE_KEYGUARD";
/** Allows the Nfc stack to dispatch Nfc messages to applications. Applications
can use this permission to ensure incoming Nfc messages are from the Nfc stack
and not simulated by another application.
- @hide
+ @hide
*/
public static final String DISPATCH_NFC_MESSAGE="android.permission.DISPATCH_NFC_MESSAGE";
/** Allows an application to retrieve state dump information from system services.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String DUMP="android.permission.DUMP";
/** @hide Allows TvInputService to access DVB device.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
public static final String DVB_DEVICE="android.permission.DVB_DEVICE";
/** Allows an application to expand or collapse the status bar.
Protection level: normal
-
+
*/
public static final String EXPAND_STATUS_BAR="android.permission.EXPAND_STATUS_BAR";
/** Run as a manufacturer test application, running as the root user.
Only available when the device is running in manufacturer test mode.
Not for use by third-party applications.
-
+
*/
public static final String FACTORY_TEST="android.permission.FACTORY_TEST";
/** @hide Allows an application to register an input filter which filters the stream
- of user events (keys, touch, trackball) before they are dispatched to any window.
+ of user events (keys, touch, trackball) before they are dispatched to any window.
*/
public static final String FILTER_EVENTS="android.permission.FILTER_EVENTS";
/** Allows an application to force a BACK operation on whatever is the
top activity.
Not for use by third-party applications.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String FORCE_BACK="android.permission.FORCE_BACK";
/** Allows an application to call
{@link android.app.ActivityManager#forceStopPackage}.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String FORCE_STOP_PACKAGES="android.permission.FORCE_STOP_PACKAGES";
- /** @hide Allows an application to collect frame statistics
+ /** @hide Allows an application to collect frame statistics
*/
public static final String FRAME_STATS="android.permission.FRAME_STATS";
/** @hide Allows the application to temporarily freeze the screen for a
- full-screen transition.
+ full-screen transition.
*/
public static final String FREEZE_SCREEN="android.permission.FREEZE_SCREEN";
/** Allows access to the list of accounts in the Accounts Service.
Protection level: normal
-
+
*/
public static final String GET_ACCOUNTS="android.permission.GET_ACCOUNTS";
- /** Allows access to the list of accounts in the Accounts Service.
+ /** Allows access to the list of accounts in the Accounts Service.
*/
@android.annotation.SystemApi
public static final String GET_ACCOUNTS_PRIVILEGED="android.permission.GET_ACCOUNTS_PRIVILEGED";
- /** @hide Allows an application to collect battery statistics
+ /** @hide Allows an application to collect battery statistics
*/
@android.annotation.SystemApi
public static final String GET_APP_OPS_STATS="android.permission.GET_APP_OPS_STATS";
/** Allows an application to get full detailed information about
recently running tasks, with full fidelity to the real state.
- @hide
+ @hide
*/
public static final String GET_DETAILED_TASKS="android.permission.GET_DETAILED_TASKS";
/** @hide Allows an application to retrieve a package's importance.
- This permission is not available to third party applications.
+ This permission is not available to third party applications.
*/
@android.annotation.SystemApi
public static final String GET_PACKAGE_IMPORTANCE="android.permission.GET_PACKAGE_IMPORTANCE";
/** Allows an application to find out the space used by any package.
Protection level: normal
-
+
*/
public static final String GET_PACKAGE_SIZE="android.permission.GET_PACKAGE_SIZE";
- /** @deprecated No longer enforced.
+ /** @deprecated No longer enforced.
*/
@Deprecated
public static final String GET_TASKS="android.permission.GET_TASKS";
@@ -737,7 +737,7 @@ public final class Manifest {
the current top activity, such as any assist context it can provide.
Not for use by third-party applications.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String GET_TOP_ACTIVITY_INFO="android.permission.GET_TOP_ACTIVITY_INFO";
@@ -748,7 +748,7 @@ public final class Manifest {
to the path in the provider where global search queries are
performed. This permission can not be held by regular applications;
it is used by applications to protect themselves from everyone else
- besides global search.
+ besides global search.
*/
@android.annotation.SystemApi
public static final String GLOBAL_SEARCH="android.permission.GLOBAL_SEARCH";
@@ -758,23 +758,23 @@ public final class Manifest {
access to a variety of content providers), and to write the
search statistics (to keep applications from gaming the source
ranking).
- @hide
+ @hide
*/
public static final String GLOBAL_SEARCH_CONTROL="android.permission.GLOBAL_SEARCH_CONTROL";
/** Allows an application to grant specific permissions.
- @hide
+ @hide
*/
public static final String GRANT_RUNTIME_PERMISSIONS="android.permission.GRANT_RUNTIME_PERMISSIONS";
/** Allows access to hardware peripherals. Intended only for hardware testing.
Not for use by third-party applications.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String HARDWARE_TEST="android.permission.HARDWARE_TEST";
/** @hide Allows HDMI-CEC service to access device and configuration files.
This should only be used by HDMI-CEC service.
-
+
*/
@android.annotation.SystemApi
public static final String HDMI_CEC="android.permission.HDMI_CEC";
@@ -783,7 +783,7 @@ public final class Manifest {
to hide non-system-overlay windows.
Not for use by third-party applications.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String HIDE_NON_SYSTEM_OVERLAY_WINDOWS="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS";
@@ -792,101 +792,101 @@ public final class Manifest {
permission, you can only deliver events to windows in your own process.
Not for use by third-party applications.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String INJECT_EVENTS="android.permission.INJECT_EVENTS";
/** Allows an app that has this permission and the permissions to install packages
to request certain runtime permissions to be granted at installation.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String INSTALL_GRANT_RUNTIME_PERMISSIONS="android.permission.INSTALL_GRANT_RUNTIME_PERMISSIONS";
/** Allows an application to install a location provider into the Location Manager.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String INSTALL_LOCATION_PROVIDER="android.permission.INSTALL_LOCATION_PROVIDER";
/** Allows an application to install packages.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String INSTALL_PACKAGES="android.permission.INSTALL_PACKAGES";
/** Allows an application to install a shortcut in Launcher.
Protection level: normal
-
+
*/
public static final String INSTALL_SHORTCUT="com.android.launcher.permission.INSTALL_SHORTCUT";
/** @hide Intent filter verifier needs to have this permission before the
PackageManager will trust it to verify intent filters.
-
+
*/
@android.annotation.SystemApi
public static final String INTENT_FILTER_VERIFICATION_AGENT="android.permission.INTENT_FILTER_VERIFICATION_AGENT";
/** @hide Allows an application to call APIs that allow it to do interactions
across the users on the device, using singleton services and
user-targeted broadcasts. This permission is not available to
- third party applications.
+ third party applications.
*/
@android.annotation.SystemApi
public static final String INTERACT_ACROSS_USERS="android.permission.INTERACT_ACROSS_USERS";
/** @hide Fuller form of {@link android.Manifest.permission#INTERACT_ACROSS_USERS}
that removes restrictions on where broadcasts can be sent and allows other
- types of interactions.
+ types of interactions.
*/
public static final String INTERACT_ACROSS_USERS_FULL="android.permission.INTERACT_ACROSS_USERS_FULL";
/** Allows an application to open windows that are for use by parts
of the system user interface.
Not for use by third-party applications.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String INTERNAL_SYSTEM_WINDOW="android.permission.INTERNAL_SYSTEM_WINDOW";
/** Allows applications to open network sockets.
Protection level: normal
-
+
*/
public static final String INTERNET="android.permission.INTERNET";
/** Allows an application to call into a carrier setup flow. It is up to the
carrier setup application to enforce that this permission is required
- @hide This is not a third-party API (intended for OEMs and system apps).
+ @hide This is not a third-party API (intended for OEMs and system apps).
*/
@android.annotation.SystemApi
public static final String INVOKE_CARRIER_SETUP="android.permission.INVOKE_CARRIER_SETUP";
/** Allows an application to call
{@link android.app.ActivityManager#killBackgroundProcesses}.
Protection level: normal
-
+
*/
public static final String KILL_BACKGROUND_PROCESSES="android.permission.KILL_BACKGROUND_PROCESSES";
/** Allows applications to kill UIDs.
Not for use by third-party applications.
- @hide
+ @hide
*/
public static final String KILL_UID="android.permission.KILL_UID";
/** Allows an application to launch the trust agent settings activity.
- @hide
+ @hide
*/
public static final String LAUNCH_TRUST_AGENT_SETTINGS="android.permission.LAUNCH_TRUST_AGENT_SETTINGS";
/** Allows applications to read the local WiFi and Bluetooth MAC address.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String LOCAL_MAC_ADDRESS="android.permission.LOCAL_MAC_ADDRESS";
/** Allows an application to use location features in hardware,
such as the geofencing api.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String LOCATION_HARDWARE="android.permission.LOCATION_HARDWARE";
/** Allows access to the loop radio (Android@Home mesh network) device.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String LOOP_RADIO="android.permission.LOOP_RADIO";
- /** @hide Allows an application to create/manage/remove stacks
+ /** @hide Allows an application to create/manage/remove stacks
*/
@android.annotation.SystemApi
public static final String MANAGE_ACTIVITY_STACKS="android.permission.MANAGE_ACTIVITY_STACKS";
@@ -894,37 +894,37 @@ public final class Manifest {
Z-order) application tokens in the window manager.
Not for use by third-party applications.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String MANAGE_APP_TOKENS="android.permission.MANAGE_APP_TOKENS";
/** Allows an application to install and/or uninstall CA certificates on
behalf of the user.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String MANAGE_CA_CERTIFICATES="android.permission.MANAGE_CA_CERTIFICATES";
/** Required to add or remove another application as a device admin.
Not for use by third-party applications.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String MANAGE_DEVICE_ADMINS="android.permission.MANAGE_DEVICE_ADMINS";
/** Allows an application to manage access to documents, usually as part
of a document picker.
Protection level: signature
-
+
*/
public static final String MANAGE_DOCUMENTS="android.permission.MANAGE_DOCUMENTS";
- /** Allows managing (adding, removing) fingerprint templates. Reserved for the system. @hide
+ /** Allows managing (adding, removing) fingerprint templates. Reserved for the system. @hide
*/
public static final String MANAGE_FINGERPRINT="android.permission.MANAGE_FINGERPRINT";
/** Api Allows an application to manage media projection sessions.
- @hide This is not a third-party API (intended for system apps).
+ @hide This is not a third-party API (intended for system apps).
*/
public static final String MANAGE_MEDIA_PROJECTION="android.permission.MANAGE_MEDIA_PROJECTION";
/** Allows an application to manage network policies (such as warning and disable
- limits) and to define application-specific rules. @hide
+ limits) and to define application-specific rules. @hide
*/
public static final String MANAGE_NETWORK_POLICY="android.permission.MANAGE_NETWORK_POLICY";
/** @hide Allows an application to set the profile owners and the device owner.
@@ -932,67 +932,67 @@ public final class Manifest {
*/
public static final String MANAGE_PROFILE_AND_DEVICE_OWNERS="android.permission.MANAGE_PROFILE_AND_DEVICE_OWNERS";
/** Allows an application to manage preferences and permissions for USB devices
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String MANAGE_USB="android.permission.MANAGE_USB";
/** @hide Allows an application to call APIs that allow it to query and manage
users on the device. This permission is not available to
- third party applications.
+ third party applications.
*/
@android.annotation.SystemApi
public static final String MANAGE_USERS="android.permission.MANAGE_USERS";
/** Must be required by hotword enrollment application,
to ensure that only the system can interact with it.
- @hide
Not for use by third-party applications.
+ @hide Not for use by third-party applications.
*/
public static final String MANAGE_VOICE_KEYPHRASES="android.permission.MANAGE_VOICE_KEYPHRASES";
- /** Not for use by third-party applications.
+ /** Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String MASTER_CLEAR="android.permission.MASTER_CLEAR";
/** Allows an application to know what content is playing and control its playback.
- Not for use by third-party applications due to privacy of media consumption
+ Not for use by third-party applications due to privacy of media consumption
*/
@android.annotation.SystemApi
public static final String MEDIA_CONTENT_CONTROL="android.permission.MEDIA_CONTENT_CONTROL";
/** Internal permission allowing an application to query/set which
applications can bind AppWidgets.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String MODIFY_APPWIDGET_BIND_PERMISSIONS="android.permission.MODIFY_APPWIDGET_BIND_PERMISSIONS";
/** Allows an application to modify audio routing and override policy decisions.
Not for use by third-party applications.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String MODIFY_AUDIO_ROUTING="android.permission.MODIFY_AUDIO_ROUTING";
/** Allows an application to modify global audio settings.
Protection level: normal
-
+
*/
public static final String MODIFY_AUDIO_SETTINGS="android.permission.MODIFY_AUDIO_SETTINGS";
/** Allows an application to account its network traffic against other UIDs. Used
by system services like download manager and media server. Not for use by
- third party apps. @hide
+ third party apps. @hide
*/
@android.annotation.SystemApi
public static final String MODIFY_NETWORK_ACCOUNTING="android.permission.MODIFY_NETWORK_ACCOUNTING";
/** Allows an application to modify parental controls
Not for use by third-party applications.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String MODIFY_PARENTAL_CONTROLS="android.permission.MODIFY_PARENTAL_CONTROLS";
/** Allows modification of the telephony state - power on, mmi, etc.
Does not include placing calls.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String MODIFY_PHONE_STATE="android.permission.MODIFY_PHONE_STATE";
/** Allows formatting file systems for removable storage.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String MOUNT_FORMAT_FILESYSTEMS="android.permission.MOUNT_FORMAT_FILESYSTEMS";
@@ -1002,76 +1002,76 @@ public final class Manifest {
@android.annotation.SystemApi
public static final String MOUNT_UNMOUNT_FILESYSTEMS="android.permission.MOUNT_UNMOUNT_FILESYSTEMS";
/** Allows an application to move location of installed package.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String MOVE_PACKAGE="android.permission.MOVE_PACKAGE";
/** Allows access to configure network interfaces, configure/use IPSec, etc.
- @hide
+ @hide
*/
public static final String NET_ADMIN="android.permission.NET_ADMIN";
- /** @hide Allows low-level access to tun tap driver
+ /** @hide Allows low-level access to tun tap driver
*/
public static final String NET_TUNNELING="android.permission.NET_TUNNELING";
/** Allows applications to perform I/O operations over NFC.
Protection level: normal
-
+
*/
public static final String NFC="android.permission.NFC";
/** Allows sending and receiving handover transfer status from Wifi and Bluetooth
- @hide
+ @hide
*/
public static final String NFC_HANDOVER_STATUS="android.permission.NFC_HANDOVER_STATUS";
/** @hide Allows system update service to notify device owner about pending updates.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
public static final String NOTIFY_PENDING_SYSTEM_UPDATE="android.permission.NOTIFY_PENDING_SYSTEM_UPDATE";
- /** @hide Allows an application to observe permission changes.
+ /** @hide Allows an application to observe permission changes.
*/
public static final String OBSERVE_GRANT_REVOKE_PERMISSIONS="android.permission.OBSERVE_GRANT_REVOKE_PERMISSIONS";
/** @hide Allows enabling/disabling OEM unlock
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
public static final String OEM_UNLOCK_STATE="android.permission.OEM_UNLOCK_STATE";
/** @hide Allows an application to modify any wifi configuration, even if created
by another application. Once reconfigured the original creator cannot make any further
modifications.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String OVERRIDE_WIFI_CONFIG="android.permission.OVERRIDE_WIFI_CONFIG";
/** Allows an application to collect component usage
statistics
Declaring the permission implies intention to use the API and the user of the
- device can grant permission through the Settings application.
+ device can grant permission through the Settings application.
*/
@android.annotation.SystemApi
public static final String PACKAGE_USAGE_STATS="android.permission.PACKAGE_USAGE_STATS";
/** @hide Package verifier needs to have this permission before the PackageManager will
trust it to verify packages.
-
+
*/
@android.annotation.SystemApi
public static final String PACKAGE_VERIFICATION_AGENT="android.permission.PACKAGE_VERIFICATION_AGENT";
/** Allows a system application to access hardware packet offload capabilities.
- @hide
+ @hide
*/
public static final String PACKET_KEEPALIVE_OFFLOAD="android.permission.PACKET_KEEPALIVE_OFFLOAD";
/** Allows access to MAC addresses of WiFi and Bluetooth peer devices.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String PEERS_MAC_ADDRESS="android.permission.PEERS_MAC_ADDRESS";
- /** Allows an application to perform CDMA OTA provisioning @hide
+ /** Allows an application to perform CDMA OTA provisioning @hide
*/
@android.annotation.SystemApi
public static final String PERFORM_CDMA_PROVISIONING="android.permission.PERFORM_CDMA_PROVISIONING";
- /** Allows an application to perform SIM Activation @hide
+ /** Allows an application to perform SIM Activation @hide
*/
@android.annotation.SystemApi
public static final String PERFORM_SIM_ACTIVATION="android.permission.PERFORM_SIM_ACTIVATION";
/** @deprecated This functionality will be removed in the future; please do
- not use. Allow an application to make its activities persistent.
+ not use. Allow an application to make its activities persistent.
*/
@Deprecated
public static final String PERSISTENT_ACTIVITY="android.permission.PERSISTENT_ACTIVITY";
@@ -1079,22 +1079,22 @@ public final class Manifest {
call with the option to redirect the call to a different number or
abort the call altogether.
Protection level: dangerous
-
+
*/
public static final String PROCESS_OUTGOING_CALLS="android.permission.PROCESS_OUTGOING_CALLS";
/** Allows an application to provide a trust agent.
- @hide For security reasons, this is a platform-only permission.
+ @hide For security reasons, this is a platform-only permission.
*/
@android.annotation.SystemApi
public static final String PROVIDE_TRUST_AGENT="android.permission.PROVIDE_TRUST_AGENT";
/** Allows an application to query whether DO_NOT_ASK_CREDENTIALS_ON_BOOT
flag is set.
- @hide
+ @hide
*/
public static final String QUERY_DO_NOT_ASK_CREDENTIALS_ON_BOOT="android.permission.QUERY_DO_NOT_ASK_CREDENTIALS_ON_BOOT";
/** Allows an application to read the user's calendar data.
Protection level: dangerous
-
+
*/
public static final String READ_CALENDAR="android.permission.READ_CALENDAR";
/** Allows an application to read the user's call log.
@@ -1108,7 +1108,7 @@ public final class Manifest {
href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
targetSdkVersion} is 16 or higher.
Protection level: dangerous
-
+
*/
public static final String READ_CALL_LOG="android.permission.READ_CALL_LOG";
/** Allows an application to read previously received cell broadcast
@@ -1122,16 +1122,16 @@ public final class Manifest {
when the alert is first received, and to delay presenting the info
to the user until after the initial alert dialog is dismissed.
Protection level: dangerous
- @hide Pending API council approval
+ @hide Pending API council approval
*/
public static final String READ_CELL_BROADCASTS="android.permission.READ_CELL_BROADCASTS";
/** Allows an application to read the user's contacts data.
Protection level: dangerous
-
+
*/
public static final String READ_CONTACTS="android.permission.READ_CONTACTS";
/** Allows applications to read dream settings and dream state.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String READ_DREAM_STATE="android.permission.READ_DREAM_STATE";
@@ -1156,35 +1156,35 @@ public final class Manifest {
href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
targetSdkVersion} is 4 or higher.
Protection level: dangerous
-
+
*/
public static final String READ_EXTERNAL_STORAGE="android.permission.READ_EXTERNAL_STORAGE";
/** Allows an application to take screen shots and more generally
get access to the frame buffer data.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String READ_FRAME_BUFFER="android.permission.READ_FRAME_BUFFER";
/** Allows an application to retrieve the current state of keys and
switches.
Not for use by third-party applications.
- @deprecated The API that used this permission has been removed.
+ @deprecated The API that used this permission has been removed.
*/
@Deprecated
public static final String READ_INPUT_STATE="android.permission.READ_INPUT_STATE";
/** Allows an application to read install sessions
- @hide This is not a third-party API (intended for system apps).
+ @hide This is not a third-party API (intended for system apps).
*/
@android.annotation.SystemApi
public static final String READ_INSTALL_SESSIONS="android.permission.READ_INSTALL_SESSIONS";
/** Allows an application to read the low-level system log files.
Not for use by third-party applications, because
- Log entries can contain the user's private information.
+ Log entries can contain the user's private information.
*/
@android.annotation.SystemApi
public static final String READ_LOGS="android.permission.READ_LOGS";
/** Allows an application to read historical network usage for
- specific networks and applications. @hide
+ specific networks and applications. @hide
*/
@android.annotation.SystemApi
public static final String READ_NETWORK_USAGE_HISTORY="android.permission.READ_NETWORK_USAGE_HISTORY";
@@ -1198,45 +1198,45 @@ public final class Manifest {
href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
targetSdkVersion} is 4 or higher.
Protection level: dangerous
-
+
*/
public static final String READ_PHONE_STATE="android.permission.READ_PHONE_STATE";
/** Allows read only access to precise phone state.
- @hide Pending API council approval
+ @hide Pending API council approval
*/
public static final String READ_PRECISE_PHONE_STATE="android.permission.READ_PRECISE_PHONE_STATE";
/** Allows read access to privileged phone state.
- @hide Used internally.
+ @hide Used internally.
*/
@android.annotation.SystemApi
public static final String READ_PRIVILEGED_PHONE_STATE="android.permission.READ_PRIVILEGED_PHONE_STATE";
/** Internal permission to allows an application to read indexable data.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String READ_SEARCH_INDEXABLES="android.permission.READ_SEARCH_INDEXABLES";
/** Allows an application to read SMS messages.
Protection level: dangerous
-
+
*/
public static final String READ_SMS="android.permission.READ_SMS";
/** Allows applications to read the sync settings.
Protection level: normal
-
+
*/
public static final String READ_SYNC_SETTINGS="android.permission.READ_SYNC_SETTINGS";
/** Allows applications to read the sync stats.
Protection level: normal
-
+
*/
public static final String READ_SYNC_STATS="android.permission.READ_SYNC_STATS";
/** Allows an application to read voicemails in the system.
Protection level: system|signature
-
+
*/
public static final String READ_VOICEMAIL="com.android.voicemail.permission.READ_VOICEMAIL";
/** @hide Allows applications to read Wi-Fi credential.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String READ_WIFI_CREDENTIAL="android.permission.READ_WIFI_CREDENTIAL";
@@ -1249,18 +1249,18 @@ public final class Manifest {
like the app is getting that permission, even though it will never be
checked, and new privileged apps can now request this one for real access.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String REAL_GET_TASKS="android.permission.REAL_GET_TASKS";
/** Required to be able to reboot the device.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String REBOOT="android.permission.REBOOT";
/** Allows an application to monitor incoming Bluetooth MAP messages, to record
- or perform processing on them.
- @hide
+ or perform processing on them.
+ @hide
*/
public static final String RECEIVE_BLUETOOTH_MAP="android.permission.RECEIVE_BLUETOOTH_MAP";
/** Allows an application to receive the
@@ -1275,144 +1275,144 @@ public final class Manifest {
explicitly declare your use of this facility to make that visible
to the user.
Protection level: normal
-
+
*/
public static final String RECEIVE_BOOT_COMPLETED="android.permission.RECEIVE_BOOT_COMPLETED";
- /**
- @hide
+ /**
+ @hide
*/
@android.annotation.SystemApi
public static final String RECEIVE_DATA_ACTIVITY_CHANGE="android.permission.RECEIVE_DATA_ACTIVITY_CHANGE";
/** Allows an application to receive emergency cell broadcast messages,
to record or display them to the user.
Not for use by third-party applications.
- @hide Pending API council approval
+ @hide Pending API council approval
*/
@android.annotation.SystemApi
public static final String RECEIVE_EMERGENCY_BROADCAST="android.permission.RECEIVE_EMERGENCY_BROADCAST";
/** Allows an application to monitor incoming MMS messages.
Protection level: dangerous
-
+
*/
public static final String RECEIVE_MMS="android.permission.RECEIVE_MMS";
/** Allows an application to receive SMS messages.
Protection level: dangerous
-
+
*/
public static final String RECEIVE_SMS="android.permission.RECEIVE_SMS";
/** Allows an application to receive STK related commands.
- @hide
+ @hide
*/
public static final String RECEIVE_STK_COMMANDS="android.permission.RECEIVE_STK_COMMANDS";
/** Allows an application to receive WAP push messages.
Protection level: dangerous
-
+
*/
public static final String RECEIVE_WAP_PUSH="android.permission.RECEIVE_WAP_PUSH";
/** @hide Allow system apps to receive broadcast
when a wifi network credential is changed.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String RECEIVE_WIFI_CREDENTIAL_CHANGE="android.permission.RECEIVE_WIFI_CREDENTIAL_CHANGE";
/** Allows an application to record audio.
Protection level: dangerous
-
+
*/
public static final String RECORD_AUDIO="android.permission.RECORD_AUDIO";
/** Allows an application to do certain operations needed for
interacting with the recovery (system update) system.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String RECOVERY="android.permission.RECOVERY";
/** Protects the ability to register any PhoneAccount with
PhoneAccount#CAPABILITY_CALL_PROVIDER.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String REGISTER_CALL_PROVIDER="android.permission.REGISTER_CALL_PROVIDER";
/** Protects the ability to register any PhoneAccount with
PhoneAccount#CAPABILITY_CONNECTION_MANAGER
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String REGISTER_CONNECTION_MANAGER="android.permission.REGISTER_CONNECTION_MANAGER";
/** Protects the ability to register any PhoneAccount with
PhoneAccount#CAPABILITY_SIM_SUBSCRIPTION. This capability indicates that the PhoneAccount
corresponds to a device SIM.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String REGISTER_SIM_SUBSCRIPTION="android.permission.REGISTER_SIM_SUBSCRIPTION";
- /** Allows registration for remote audio playback. @hide
+ /** Allows registration for remote audio playback. @hide
*/
public static final String REMOTE_AUDIO_PLAYBACK="android.permission.REMOTE_AUDIO_PLAYBACK";
/** Allows an application to remove DRM certificates
- @hide This is not a third-party API (intended for system apps).
+ @hide This is not a third-party API (intended for system apps).
*/
@android.annotation.SystemApi
public static final String REMOVE_DRM_CERTIFICATES="android.permission.REMOVE_DRM_CERTIFICATES";
- /** @hide Allows an application to change to remove/kill tasks
+ /** @hide Allows an application to change to remove/kill tasks
*/
public static final String REMOVE_TASKS="android.permission.REMOVE_TASKS";
/** Allows an application to change the Z-order of tasks.
Protection level: normal
-
+
*/
public static final String REORDER_TASKS="android.permission.REORDER_TASKS";
/** Permission an application must hold in order to use
{@link android.provider.Settings#ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS}.
This is a normal permission: an app requesting it will always be granted the
- permission, without the user needing to approve or see it.
+ permission, without the user needing to approve or see it.
*/
public static final String REQUEST_IGNORE_BATTERY_OPTIMIZATIONS="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS";
/** Allows an application to request installing packages. Apps
targeting APIs greater than 22 must hold this permission in
order to use {@link android.content.Intent#ACTION_INSTALL_PACKAGE}.
Protection level: normal
-
+
*/
public static final String REQUEST_INSTALL_PACKAGES="android.permission.REQUEST_INSTALL_PACKAGES";
- /** Allows an app to reset fingerprint attempt counter. Reserved for the system. @hide
+ /** Allows an app to reset fingerprint attempt counter. Reserved for the system. @hide
*/
public static final String RESET_FINGERPRINT_LOCKOUT="android.permission.RESET_FINGERPRINT_LOCKOUT";
/** @deprecated The {@link android.app.ActivityManager#restartPackage}
- API is no longer supported.
+ API is no longer supported.
*/
@Deprecated
public static final String RESTART_PACKAGES="android.permission.RESTART_PACKAGES";
/** @hide Allows an application to retrieve the content of the active window
- An active window is the window that has fired an accessibility event.
+ An active window is the window that has fired an accessibility event.
*/
@android.annotation.SystemApi
public static final String RETRIEVE_WINDOW_CONTENT="android.permission.RETRIEVE_WINDOW_CONTENT";
- /** @hide Allows an application to retrieve the window token from the accessibility manager.
+ /** @hide Allows an application to retrieve the window token from the accessibility manager.
*/
public static final String RETRIEVE_WINDOW_TOKEN="android.permission.RETRIEVE_WINDOW_TOKEN";
/** Allows an application to revoke specific permissions.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String REVOKE_RUNTIME_PERMISSIONS="android.permission.REVOKE_RUNTIME_PERMISSIONS";
- /** Allows applications to act as network scorers. @hide
+ /** Allows applications to act as network scorers. @hide
*/
@android.annotation.SystemApi
public static final String SCORE_NETWORKS="android.permission.SCORE_NETWORKS";
/** Allows an application (Phone) to send a request to other applications
to handle the respond-via-message action during incoming calls.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String SEND_RESPOND_VIA_MESSAGE="android.permission.SEND_RESPOND_VIA_MESSAGE";
/** Allows an application to send SMS messages.
Protection level: dangerous
-
+
*/
public static final String SEND_SMS="android.permission.SEND_SMS";
/** Allows applications to access serial ports via the SerialManager.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String SERIAL_PORT="android.permission.SERIAL_PORT";
@@ -1421,133 +1421,133 @@ public final class Manifest {
(usually the monkey command).
Not for use by third-party applications.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String SET_ACTIVITY_WATCHER="android.permission.SET_ACTIVITY_WATCHER";
/** Allows an application to broadcast an Intent to set an alarm for the user.
Protection level: normal
-
+
*/
public static final String SET_ALARM="com.android.alarm.permission.SET_ALARM";
/** Allows an application to control whether activities are immediately
finished when put in the background.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String SET_ALWAYS_FINISH="android.permission.SET_ALWAYS_FINISH";
/** Modify the global animation scaling factor.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String SET_ANIMATION_SCALE="android.permission.SET_ANIMATION_SCALE";
/** Configure an application for debugging.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String SET_DEBUG_APP="android.permission.SET_DEBUG_APP";
/** Allows low-level access to setting input device calibration.
Not for use by normal applications.
- @hide
+ @hide
*/
public static final String SET_INPUT_CALIBRATION="android.permission.SET_INPUT_CALIBRATION";
/** Allows low-level access to setting the keyboard layout.
Not for use by third-party applications.
- @hide
+ @hide
*/
public static final String SET_KEYBOARD_LAYOUT="android.permission.SET_KEYBOARD_LAYOUT";
/** Allows low-level access to setting the orientation (actually
rotation) of the screen.
Not for use by third-party applications.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String SET_ORIENTATION="android.permission.SET_ORIENTATION";
/** Allows low-level access to setting the pointer speed.
Not for use by third-party applications.
@hide
-
+
*/
@android.annotation.SystemApi
public static final String SET_POINTER_SPEED="android.permission.SET_POINTER_SPEED";
/** @deprecated No longer useful, see
{@link android.content.pm.PackageManager#addPackageToPreferred}
- for details.
+ for details.
*/
@Deprecated
public static final String SET_PREFERRED_APPLICATIONS="android.permission.SET_PREFERRED_APPLICATIONS";
/** Allows an application to set the maximum number of (not needed)
application processes that can be running.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String SET_PROCESS_LIMIT="android.permission.SET_PROCESS_LIMIT";
- /** @hide Change the screen compatibility mode of applications
+ /** @hide Change the screen compatibility mode of applications
*/
@android.annotation.SystemApi
public static final String SET_SCREEN_COMPATIBILITY="android.permission.SET_SCREEN_COMPATIBILITY";
/** Allows applications to set the system time.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String SET_TIME="android.permission.SET_TIME";
/** Allows applications to set the system time zone.
Protection level: normal
-
+
*/
public static final String SET_TIME_ZONE="android.permission.SET_TIME_ZONE";
/** Allows applications to set the wallpaper.
Protection level: normal
-
+
*/
public static final String SET_WALLPAPER="android.permission.SET_WALLPAPER";
/** Allows applications to set a live wallpaper.
@hide XXX Change to signature once the picker is moved to its
- own apk as Ghod Intended.
+ own apk as Ghod Intended.
*/
@android.annotation.SystemApi
public static final String SET_WALLPAPER_COMPONENT="android.permission.SET_WALLPAPER_COMPONENT";
/** Allows applications to set the wallpaper hints.
Protection level: normal
-
+
*/
public static final String SET_WALLPAPER_HINTS="android.permission.SET_WALLPAPER_HINTS";
/** Allows an application to call the activity manager shutdown() API
to put the higher-level system there into a shutdown state.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String SHUTDOWN="android.permission.SHUTDOWN";
/** Allow an application to request that a signal be sent to all persistent processes.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String SIGNAL_PERSISTENT_PROCESSES="android.permission.SIGNAL_PERSISTENT_PROCESSES";
/** Allows an application to start any activity, regardless of permission
protection or exported state.
- @hide
+ @hide
*/
public static final String START_ANY_ACTIVITY="android.permission.START_ANY_ACTIVITY";
/** Allows an application to start a task from a ActivityManager#RecentTaskInfo.
- @hide
+ @hide
*/
public static final String START_TASKS_FROM_RECENTS="android.permission.START_TASKS_FROM_RECENTS";
/** Allows an application to open, close, or disable the status bar
and its icons.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String STATUS_BAR="android.permission.STATUS_BAR";
/** Allows an application to be the status bar. Currently used only by SystemUI.apk
- @hide
+ @hide
*/
public static final String STATUS_BAR_SERVICE="android.permission.STATUS_BAR_SERVICE";
/** Allows an application to tell the activity manager to temporarily
stop application switches, putting it into a special mode that
prevents applications from immediately switching away from some
critical UI such as the home screen.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String STOP_APP_SWITCHES="android.permission.STOP_APP_SWITCHES";
@@ -1555,41 +1555,41 @@ public final class Manifest {
{@link android.view.WindowManager.LayoutParams#TYPE_SYSTEM_ALERT},
shown on top of all other applications. Very few applications
should use this permission; these windows are intended for
- system-level interaction with the user.
+ system-level interaction with the user.
*/
public static final String SYSTEM_ALERT_WINDOW="android.permission.SYSTEM_ALERT_WINDOW";
/** Allows an application to query tablet mode state and monitor changes
in it.
Not for use by third-party applications.
- @hide
+ @hide
*/
public static final String TABLET_MODE="android.permission.TABLET_MODE";
- /** @hide Allows an application to temporary enable accessibility on the device.
+ /** @hide Allows an application to temporary enable accessibility on the device.
*/
public static final String TEMPORARY_ENABLE_ACCESSIBILITY="android.permission.TEMPORARY_ENABLE_ACCESSIBILITY";
/** Allows using the device's IR transmitter, if available.
Protection level: normal
-
+
*/
public static final String TRANSMIT_IR="android.permission.TRANSMIT_IR";
/** Allows an application to listen to trust changes. Only allowed for system processes.
- @hide
+ @hide
*/
public static final String TRUST_LISTENER="android.permission.TRUST_LISTENER";
/** Allows TvInputService to access underlying TV input hardware such as
built-in tuners and HDMI-in's.
@hide This should only be used by OEM's TvInputService's.
-
+
*/
@android.annotation.SystemApi
public static final String TV_INPUT_HARDWARE="android.permission.TV_INPUT_HARDWARE";
/** Allows an application to uninstall a shortcut in Launcher.
Protection level: normal
-
+
*/
public static final String UNINSTALL_SHORTCUT="com.android.launcher.permission.UNINSTALL_SHORTCUT";
/** Allows an application to update application operation statistics. Not for
- use by third party apps. @hide
+ use by third party apps. @hide
*/
@android.annotation.SystemApi
public static final String UPDATE_APP_OPS_STATS="android.permission.UPDATE_APP_OPS_STATS";
@@ -1597,54 +1597,54 @@ public final class Manifest {
An application requesting this permission is responsible for
verifying the source and integrity of any update before passing
it off to the various individual installer components
- @hide
+ @hide
*/
public static final String UPDATE_CONFIG="android.permission.UPDATE_CONFIG";
/** Allows an application to update device statistics.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String UPDATE_DEVICE_STATS="android.permission.UPDATE_DEVICE_STATS";
/** Allows an application to hold an UpdateLock, recommending that a headless
OTA reboot *not* occur while the lock is held.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String UPDATE_LOCK="android.permission.UPDATE_LOCK";
/** Allows access to the PowerManager.userActivity function.
-
Not for use by third-party applications. @hide
+
Not for use by third-party applications. @hide
*/
@android.annotation.SystemApi
public static final String USER_ACTIVITY="android.permission.USER_ACTIVITY";
/** Allows an app to use fingerprint hardware.
Protection level: normal
-
+
*/
public static final String USE_FINGERPRINT="android.permission.USE_FINGERPRINT";
/** Allows an application to use SIP service.
Protection level: dangerous
-
+
*/
public static final String USE_SIP="android.permission.USE_SIP";
/** Allows access to the vibrator.
Protection level: normal
-
+
*/
public static final String VIBRATE="android.permission.VIBRATE";
/** Allows using PowerManager WakeLocks to keep processor from sleeping or screen
from dimming.
Protection level: normal
-
+
*/
public static final String WAKE_LOCK="android.permission.WAKE_LOCK";
/** Allows applications to write the apn settings.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String WRITE_APN_SETTINGS="android.permission.WRITE_APN_SETTINGS";
/** Allows an application to write the user's calendar data.
Protection level: dangerous
-
+
*/
public static final String WRITE_CALENDAR="android.permission.WRITE_CALENDAR";
/** Allows an application to write (but not read) the user's
@@ -1659,16 +1659,16 @@ public final class Manifest {
href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code
targetSdkVersion} is 16 or higher.
Protection level: dangerous
-
+
*/
public static final String WRITE_CALL_LOG="android.permission.WRITE_CALL_LOG";
/** Allows an application to write the user's contacts data.
Protection level: dangerous
-
+
*/
public static final String WRITE_CONTACTS="android.permission.WRITE_CONTACTS";
/** Allows applications to write dream settings, and start or stop dreaming.
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String WRITE_DREAM_STATE="android.permission.WRITE_DREAM_STATE";
@@ -1686,70 +1686,70 @@ public final class Manifest {
{@link android.content.Context#getExternalFilesDir} and
{@link android.content.Context#getExternalCacheDir}.
Protection level: dangerous
-
+
*/
public static final String WRITE_EXTERNAL_STORAGE="android.permission.WRITE_EXTERNAL_STORAGE";
/** Allows an application to modify the Google service map.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String WRITE_GSERVICES="android.permission.WRITE_GSERVICES";
/** Allows an application to write to internal media storage
- @hide
+ @hide
*/
@android.annotation.SystemApi
public static final String WRITE_MEDIA_STORAGE="android.permission.WRITE_MEDIA_STORAGE";
/** Allows an application to read or write the secure system settings.
-
Not for use by third-party applications.
+
Not for use by third-party applications.
*/
@android.annotation.SystemApi
public static final String WRITE_SECURE_SETTINGS="android.permission.WRITE_SECURE_SETTINGS";
/** Allows an application to read or write the system settings.
Protection level: signature
-
+
*/
public static final String WRITE_SETTINGS="android.permission.WRITE_SETTINGS";
/** Allows applications to write the sync settings.
Protection level: normal
-
+
*/
public static final String WRITE_SYNC_SETTINGS="android.permission.WRITE_SYNC_SETTINGS";
/** Allows an application to modify and remove existing voicemails in the system
Protection level: system|signature
-
+
*/
public static final String WRITE_VOICEMAIL="com.android.voicemail.permission.WRITE_VOICEMAIL";
}
public static final class permission_group {
- /** Used for runtime permissions related to user's calendar.
+ /** Used for runtime permissions related to user's calendar.
*/
public static final String CALENDAR="android.permission-group.CALENDAR";
/** Used for permissions that are associated with accessing
- camera or capturing images/video from the device.
+ camera or capturing images/video from the device.
*/
public static final String CAMERA="android.permission-group.CAMERA";
- /** Used for runtime permissions related to user's contacts and profile.
+ /** Used for runtime permissions related to user's contacts and profile.
*/
public static final String CONTACTS="android.permission-group.CONTACTS";
- /** Used for permissions that allow accessing the device location.
+ /** Used for permissions that allow accessing the device location.
*/
public static final String LOCATION="android.permission-group.LOCATION";
/** Used for permissions that are associated with accessing
microphone audio from the device. Note that phone calls also capture audio
- but are in a separate (more visible) permission group.
+ but are in a separate (more visible) permission group.
*/
public static final String MICROPHONE="android.permission-group.MICROPHONE";
- /** Used for permissions that are associated telephony features.
+ /** Used for permissions that are associated telephony features.
*/
public static final String PHONE="android.permission-group.PHONE";
/** Used for permissions that are associated with accessing
- camera or capturing images/video from the device.
+ camera or capturing images/video from the device.
*/
public static final String SENSORS="android.permission-group.SENSORS";
- /** Used for runtime permissions related to user's SMS messages.
+ /** Used for runtime permissions related to user's SMS messages.
*/
public static final String SMS="android.permission-group.SMS";
- /** Used for runtime permissions related to the shared external storage.
+ /** Used for runtime permissions related to the shared external storage.
*/
public static final String STORAGE="android.permission-group.STORAGE";
}
diff --git a/src/api-impl/com/android/internal/R.java b/src/api-impl/com/android/internal/R.java
index 5f148c3a..fe3862f9 100644
--- a/src/api-impl/com/android/internal/R.java
+++ b/src/api-impl/com/android/internal/R.java
@@ -10,7 +10,7 @@ package com.android.internal;
public final class R {
public static final class anim {
public static final int accelerate_decelerate_interpolator=0x010a0004;
- /** Acceleration curve matching Flash's quadratic ease out function.
+ /** Acceleration curve matching Flash's quadratic ease out function.
*/
public static final int accelerate_interpolator=0x010a0005;
public static final int activity_close_enter=0x010a000d;
@@ -40,7 +40,7 @@ public final class R {
public static final int cycle_interpolator=0x010a000c;
public static final int date_picker_fade_in_material=0x010a0022;
public static final int date_picker_fade_out_material=0x010a0023;
- /** Acceleration curve matching Flash's quadratic ease in function.
+ /** Acceleration curve matching Flash's quadratic ease in function.
*/
public static final int decelerate_interpolator=0x010a0006;
public static final int dialog_enter=0x010a0024;
@@ -219,10 +219,10 @@ public final class R {
public static final int window_move_from_decor=0x010a00cb;
}
public static final class animator {
- /** A simple fade-in animation.
+ /** A simple fade-in animation.
*/
public static final int fade_in=0x010b0000;
- /** A simple fade-out animation.
+ /** A simple fade-out animation.
*/
public static final int fade_out=0x010b0001;
public static final int fragment_close_enter=0x010b0002;
@@ -237,25 +237,25 @@ public final class R {
public static final int leanback_setup_fragment_open_exit=0x010b000b;
}
public static final class array {
- /** This string array should be overridden by the manufacture to present a list of carrier-id,locale. The wifi regulatory domain is extracted from the locale information. This is used at startup to set system defaults by checking the system property ro.carrier for the carrier-id and searching through this array
- An Array of [[Carrier-ID]
- [default-locale]]
+ /** This string array should be overridden by the manufacture to present a list of carrier-id,locale. The wifi regulatory domain is extracted from the locale information. This is used at startup to set system defaults by checking the system property ro.carrier for the carrier-id and searching through this array
+ An Array of [[Carrier-ID]
+ [default-locale]]
*/
public static final int carrier_properties=0x0107010e;
/** A list of apps that are allowed to have another instance on a device
- in the clone profile.
+ in the clone profile.
*/
public static final int cloneable_apps=0x01070018;
- /** Various locale-specific string resources for Contacts
+ /** Various locale-specific string resources for Contacts
*/
public static final int common_nicknames=0x010700fe;
- /** Additional non-platform defined global settings exposed to Instant Apps
+ /** Additional non-platform defined global settings exposed to Instant Apps
*/
public static final int config_allowedGlobalInstantAppSettings=0x01070097;
- /** Additional non-platform defined secure settings exposed to Instant Apps
+ /** Additional non-platform defined secure settings exposed to Instant Apps
*/
public static final int config_allowedSecureInstantAppSettings=0x01070099;
- /** Additional non-platform defined system settings exposed to Instant Apps
+ /** Additional non-platform defined system settings exposed to Instant Apps
*/
public static final int config_allowedSystemInstantAppSettings=0x01070098;
/** Array of hysteresis constraint values for brightening, represented as tenths of a
@@ -263,7 +263,7 @@ public final class R {
config_ambientThresholdLevels. The brightening threshold is calculated as
lux * (1.0f + CONSTRAINT_VALUE). When the current lux is higher than this threshold,
the screen brightness is recalculated. See the config_ambientThresholdLevels
- description for how the constraint value is chosen.
+ description for how the constraint value is chosen.
*/
public static final int config_ambientBrighteningThresholds=0x01070056;
/** Array of hysteresis constraint values for darkening, represented as tenths of a
@@ -271,7 +271,7 @@ public final class R {
config_ambientThresholdLevels. The darkening threshold is calculated as
lux * (1.0f - CONSTRAINT_VALUE). When the current lux is lower than this threshold,
the screen brightness is recalculated. See the config_ambientThresholdLevels
- description for how the constraint value is chosen.
+ description for how the constraint value is chosen.
*/
public static final int config_ambientDarkeningThresholds=0x01070057;
/** Array of ambient lux threshold values. This is used for determining hysteresis constraint
@@ -284,14 +284,14 @@ public final class R {
condition calculated index
value < level[0] 0
level[n] <= value < level[n+1] n+1
- level[MAX] <= value MAX+1
+ level[MAX] <= value MAX+1
*/
public static final int config_ambientThresholdLevels=0x01070055;
- /** Low zone lux thresholds
+ /** Low zone lux thresholds
- amb0
- amb1
-
+
*/
public static final int config_ambientThresholdsOfPeakRefreshRate=0x010700b2;
/** Array of output values for button backlight corresponding to the lux values
@@ -299,7 +299,7 @@ public final class R {
than the size of the config_autoBrightnessLevels array.
The brightness values must be between 0 and 255 and be non-decreasing.
- This must be overridden in platform specific overlays
+ This must be overridden in platform specific overlays
*/
public static final int config_autoBrightnessButtonBacklightValues=0x0107004f;
/** Array of desired screen brightness in nits corresponding to the lux values
@@ -313,27 +313,27 @@ public final class R {
This array should have size one greater than the size of the config_autoBrightnessLevels
array. The brightness values must be non-negative and non-decreasing. This must be
- overridden in platform specific overlays
+ overridden in platform specific overlays
*/
public static final int config_autoBrightnessDisplayValuesNits=0x0107004d;
/** Array of desired screen brightness in nits for idle screen brightness mode.
This array should meet the same requirements as config_autoBrightnessDisplayValuesNits.
This array also corresponds to the lux values given in config_autoBrightnessLevelsIdle.
- In order to activate this mode, config_enableIdleScreenBrightnessMode must be true.
+ In order to activate this mode, config_enableIdleScreenBrightnessMode must be true.
*/
public static final int config_autoBrightnessDisplayValuesNitsIdle=0x0107004e;
/** Array of output values for LCD backlight corresponding to the lux values
in the config_autoBrightnessLevels array. This array should have size one greater
than the size of the config_autoBrightnessLevels array.
The brightness values must be between 0 and 255 and be non-decreasing.
- This must be overridden in platform specific overlays
+ This must be overridden in platform specific overlays
*/
public static final int config_autoBrightnessLcdBacklightValues=0x0107004b;
/** Array of output values for LCD backlight in doze mode corresponding to the lux values
in the config_autoBrightnessLevels array. This array should have size one greater
than the size of the config_autoBrightnessLevels array.
The brightness values must be between 0 and 255 and be non-decreasing.
- This must be overridden in platform specific overlays
+ This must be overridden in platform specific overlays
*/
public static final int config_autoBrightnessLcdBacklightValues_doze=0x0107004c;
/** Array of light sensor lux values to define our levels for auto backlight brightness support.
@@ -355,7 +355,7 @@ public final class R {
Spline interpolation is used to determine the auto-brightness
backlight values for lux levels between these control points.
- Must be overridden in platform specific overlays
+ Must be overridden in platform specific overlays
*/
public static final int config_autoBrightnessLevels=0x01070049;
/** Array of light sensor lux values to define our levels for auto backlight brightness
@@ -378,14 +378,14 @@ public final class R {
Spline interpolation is used to determine the auto-brightness
backlight values for lux levels between these control points.
- Must be overridden in platform specific overlays
+ Must be overridden in platform specific overlays
*/
public static final int config_autoBrightnessLevelsIdle=0x0107004a;
/** Array of output values for keyboard backlight corresponding to the lux values
in the config_autoKeyboardBacklight(Increase/Decrease)LuxThreshold arrays.
The brightness values must be between 0 and 255 and be non-decreasing.
- This can be overridden in platform specific overlays
+ This can be overridden in platform specific overlays
*/
public static final int config_autoKeyboardBacklightBrightnessValues=0x01070050;
/** Array of threshold values for keyboard backlight corresponding to the values
@@ -393,7 +393,7 @@ public final class R {
These lux values indicate when to move to a lower keyboard backlight value,
as defined in config_autoKeyboardBacklightBrightnessValues array.
- This can be overridden in platform specific overlays
+ This can be overridden in platform specific overlays
*/
public static final int config_autoKeyboardBacklightDecreaseLuxThreshold=0x01070051;
/** Array of threshold values for keyboard backlight corresponding to the values
@@ -401,7 +401,7 @@ public final class R {
These lux values indicate when to move to a higher keyboard backlight value,
as defined in config_autoKeyboardBacklightBrightnessValues array.
- This can be overridden in platform specific overlays
+ This can be overridden in platform specific overlays
*/
public static final int config_autoKeyboardBacklightIncreaseLuxThreshold=0x01070052;
/** Sets the minimum and maximum tilt tolerance for each possible rotation.
@@ -433,63 +433,63 @@ public final class R {
the device to more strongly prefer to retain its current configuration (in absence
of a clear indication that a rotation is desired) since the user's head and neck may
be held at an unusual angle.
-
+
*/
public static final int config_autoRotationTiltTolerance=0x01070028;
/** Specifies priority of automatic time sources. Suggestions from higher entries in the list
take precedence over lower ones.
- See com.android.server.timedetector.TimeDetectorStrategy for available sources.
+ See com.android.server.timedetector.TimeDetectorStrategy for available sources.
*/
public static final int config_autoTimeSourcesPriority=0x0107005e;
- /** Indicate available ColorDisplayManager.COLOR_MODE_xxx.
+ /** Indicate available ColorDisplayManager.COLOR_MODE_xxx.
Example:
- 0
- 1
- 2
-
+
*/
public static final int config_availableColorModes=0x0107003a;
/** Array of values used in Gesture Navigation settings page to reduce/increase the back
gesture's inset size. These values will be multiplied into the default width, read from the
gesture navigation overlay package, in order to create 3 different sizes which are selectable
- via a slider component.
+ via a slider component.
*/
public static final int config_backGestureInsetScales=0x01070086;
- /** An array of packages that need to be treated as type service in battery settings
+ /** An array of packages that need to be treated as type service in battery settings
*/
public static final int config_batteryPackageTypeService=0x0107009b;
- /** An array of packages that need to be treated as type system in battery settings
+ /** An array of packages that need to be treated as type system in battery settings
*/
public static final int config_batteryPackageTypeSystem=0x0107009a;
/** The threshold of the background current drain (in percentage) to the background
restricted level for legitimate case with higher background current drain.
-
- low ram device
+
+ low ram device
*/
public static final int config_bg_current_drain_high_threshold_to_bg_restricted=0x010700e8;
/** The threshold of the background current drain (in percentage) to the restricted
standby bucket for legitimate case with higher background current drain.
-
- low ram device
+
+ low ram device
*/
public static final int config_bg_current_drain_high_threshold_to_restricted_bucket=0x010700e7;
/** The threshold of the background current drain (in percentage) to the background
restricted level.
-
- low ram device
+
+ low ram device
*/
public static final int config_bg_current_drain_threshold_to_bg_restricted=0x010700e6;
/** The threshold of the background current drain (in percentage) to the restricted
standby bucket.
-
- low ram device
+
+ low ram device
*/
public static final int config_bg_current_drain_threshold_to_restricted_bucket=0x010700e5;
/** List of biometric sensors on the device, in decreasing strength. Consumed by AuthService
when registering authenticators with BiometricService. Format must be ID:Modality:Strength,
where: IDs are unique per device, Modality as defined in BiometricAuthenticator.java,
- and Strength as defined in Authenticators.java
- - 0:2:15
ID0:Fingerprint:Strong
+ and Strength as defined in Authenticators.java
+ - 0:2:15
ID0:Fingerprint:Strong
*/
public static final int config_biometric_sensors=0x010700b7;
/** The display uses different gamma curves for different refresh rates. It's hard for panel
@@ -503,52 +503,52 @@ public final class R {
|| display brightness <= disp1 && ambient brightness <= amb1
Brightness thresholds are paired with lux thresholds - they both have to be met.
A negative brightness or lux value means that only one threshold should be used - e.g. if
- the brightness value is negative, only the lux threshold is applied.
- Low zone brightness thresholds in the range [0, 255]
+ the brightness value is negative, only the lux threshold is applied.
+ Low zone brightness thresholds in the range [0, 255]
- disp0
- disp1
-
+
*/
public static final int config_brightnessThresholdsOfPeakRefreshRate=0x010700b1;
- /** The display round config for each display in a multi-display device.
+ /** The display round config for each display in a multi-display device.
*/
public static final int config_builtInDisplayIsRoundArray=0x010700dc;
- /** call barring MMI code from TS 22.030 Annex B
+ /** call barring MMI code from TS 22.030 Annex B
*/
public static final int config_callBarringMMI=0x01070076;
- /** Ims supported call barring MMI code
+ /** Ims supported call barring MMI code
*/
public static final int config_callBarringMMI_for_ims=0x01070077;
/** Ambient Light sensor's lux values to use as the threshold between brightness colors defined
by config_cameraPrivacyLightColors. If the ambient brightness less than the first element
in this array then lights of type "camera" will be set to the color in position 0 of
config_cameraPrivacyLightColors. This array must be strictly increasing and have a length
- of zero means there is only one brightness
+ of zero means there is only one brightness
*/
public static final int config_cameraPrivacyLightAlsLuxThresholds=0x010700ea;
/** Colors to configure the camera privacy light at different brightnesses. This array must
have exactly one more entry than config_cameraPrivacyLightAlsLuxThresholds,
or a length of zero if the feature isn't supported. If nonempty and the device doesn't have
- an ambient light sensor the last element in this array will be the only one used
+ an ambient light sensor the last element in this array will be the only one used
*/
public static final int config_cameraPrivacyLightColors=0x010700eb;
- /** If the DUN connection for this CDMA device supports more than just DUN
- traffic you should list them here.
- If this device is not CDMA this is ignored. If this list is empty on
- a DUN-requiring CDMA device, the DUN APN will just support just DUN.
+ /** If the DUN connection for this CDMA device supports more than just DUN
+ traffic you should list them here.
+ If this device is not CDMA this is ignored. If this list is empty on
+ a DUN-requiring CDMA device, the DUN APN will just support just DUN.
*/
public static final int config_cdma_dun_supported_types=0x01070027;
- /** An array of CDMA roaming indicators which means international roaming
+ /** An array of CDMA roaming indicators which means international roaming
*/
public static final int config_cdma_international_roaming_indicators=0x01070083;
/** Number of retries Cell Data should attempt for a given error code before
restarting the modem.
Error codes not listed will not lead to modem restarts.
- Array of "code#,retry#"
+ Array of "code#,retry#"
*/
public static final int config_cell_retries_per_error_code=0x01070085;
- /** Vibrator pattern for feedback when selecting an hour/minute tick of a Clock
+ /** Vibrator pattern for feedback when selecting an hour/minute tick of a Clock
*/
public static final int config_clockTickVibePattern=0x01070044;
/** A list of SHA256 Certificates managing companion device(s) by the same manufacturers as
@@ -557,7 +557,7 @@ public final class R {
Note that config_companionDeviceCerts and config_companionDevicePackages are parallel
arrays.
Example: "1A:2B:3C:4D"
-
+
*/
public static final int config_companionDeviceCerts=0x0107008f;
/** A list of packages managing companion device(s) by the same manufacturers as the main
@@ -565,29 +565,29 @@ public final class R {
times in a short period.
Note that config_companionDevicePackages and config_companionDeviceCerts are
parallel arrays.
-
+
*/
public static final int config_companionDevicePackages=0x0107008e;
/** A list of SHA256 Certificates corresponding to config_companionPermSyncEnabledPackages.
Note that config_companionPermSyncEnabledPackages and config_companionPermSyncEnabledCerts
are parallel arrays.
Example: "1A:2B:3C:4D"
-
+
*/
public static final int config_companionPermSyncEnabledCerts=0x01070091;
/** A list of packages that auto-enable permissions sync feature.
Note that config_companionPermSyncEnabledPackages and config_companionPermSyncEnabledCerts
are parallel arrays.
-
+
*/
public static final int config_companionPermSyncEnabledPackages=0x01070090;
/** The device states (supplied by DeviceStateManager) that should be treated as concurrent
- display state. Default is empty.
+ display state. Default is empty.
Example:
- 0
- 1
- 2
-
+
*/
public static final int config_concurrentDisplayDeviceStates=0x0107002d;
/** This config is holding calling number conversion map - expected to convert to emergency
@@ -596,7 +596,7 @@ public final class R {
E.g. for Taiwan Type Approval, 110 and 119 should be converted to 112.
- 110,119:112
-
+
*/
public static final int config_convert_to_emergency_number_map=0x0107008b;
/** Allowlisted activities for launch on a private display. specific to automotive.
@@ -607,7 +607,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
These services must be trusted, as it can be activated without explicit consent of the user.
See android.service.ambientcontext.AmbientContextDetectionService and
android.service.wearable.WearableSensingService.
-
+
*/
public static final int config_defaultAmbientContextServices=0x01070092;
/** The package name list for the system's cloudsearch service.
@@ -616,23 +616,23 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
If no service with the specified name exists on the device, cloudsearch will be disabled.
Example: "com.android.intelligence/.CloudSearchService"
config_defaultCloudSearchServices is for the multiple provider case.
-
+
*/
public static final int config_defaultCloudSearchServices=0x01070093;
/** User restrictions set on the SYSTEM user when it is first created.
- Note: Also update appropriate overlay files.
+ Note: Also update appropriate overlay files.
*/
public static final int config_defaultFirstUserRestrictions=0x01070089;
- /** Packages that can't be killed even if it's requested to be killed on imperceptible
+ /** Packages that can't be killed even if it's requested to be killed on imperceptible
*/
public static final int config_defaultImperceptibleKillingExemptionPkgs=0x010700cb;
- /** Proc States that can't be killed even if it's requested to be killed on imperceptible
- PROCESS_STATE_TOP_SLEEPING
+ /** Proc States that can't be killed even if it's requested to be killed on imperceptible
+ PROCESS_STATE_TOP_SLEEPING
*/
public static final int config_defaultImperceptibleKillingExemptionProcStates=0x010700cc;
/** Vibrator pattern to be used as the default for notifications
that specify DEFAULT_VIBRATE.
-
+
*/
public static final int config_defaultNotificationVibePattern=0x0107006f;
/** A vibration waveform for notifications that specify DEFAULT_VIBRATE.
@@ -641,10 +641,10 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
This is only applied on devices with vibration frequency control. If the device doesn't
support frequency control, then the vibration specified in
config_defaultNotificationVibePattern is used instead.
-
+
*/
public static final int config_defaultNotificationVibeWaveform=0x01070070;
- /** Default files to pin via Pinner Service
+ /** Default files to pin via Pinner Service
*/
public static final int config_defaultPinnerServiceFiles=0x01070087;
/** If there is no preload VM number in the sim card, carriers such as
@@ -659,31 +659,31 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
(2) If the config_default_vm_number array has gid special item and it matches the current
sim's gid, it will be picked.
(3) If the config_default_vm_number array has gid special item but it doesn't match the
- current sim's gid, the last one without gid will be picked
+ current sim's gid, the last one without gid will be picked
*/
public static final int config_default_vm_number=0x0107007d;
/** Class names of device specific services inheriting com.android.server.SystemService. The
- classes are instantiated in the order of the array.
+ classes are instantiated in the order of the array.
*/
public static final int config_deviceSpecificSystemServices=0x0107009d;
- /** End safety protection resources to be overlaid
- List of the labels of requestable device state config values
+ /** End safety protection resources to be overlaid
+ List of the labels of requestable device state config values
*/
public static final int config_deviceStatesAvailableForAppRequests=0x010700e9;
/** When a device enters any of these states, it should go to sleep. States are defined in
- device_state_configuration.xml.
+ device_state_configuration.xml.
Example:
- 0
- 1
-
+
*/
public static final int config_deviceStatesOnWhichToSleep=0x0107002f;
/** When a device enters any of these states, it should be woken up. States are defined in
- device_state_configuration.xml.
+ device_state_configuration.xml.
Example:
- 0
- 1
-
+
*/
public static final int config_deviceStatesOnWhichToWakeUp=0x0107002e;
/** Device states where the sensor based rotation values should be reversed around the Z axis
@@ -693,18 +693,18 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
public static final int config_deviceStatesToReverseDefaultDisplayRotationAroundZAxis=0x01070039;
/** Which Surface rotations are considered as tabletop posture (horizontal hinge) when the
device is half-folded. Other half-folded postures will be assumed to be book (vertical
- hinge) mode. Units: degrees; valid values: 0, 90, 180, 270.
+ hinge) mode. Units: degrees; valid values: 0, 90, 180, 270.
*/
public static final int config_deviceTabletopRotations=0x010700d0;
/** Map of System DeviceState supplied by DeviceStateManager to WM Jetpack posture. Must be in
- the format [System DeviceState]:[WM Jetpack Posture], for example: "0:1".
+ the format [System DeviceState]:[WM Jetpack Posture], for example: "0:1".
*/
public static final int config_device_state_postures=0x010700cf;
public static final int config_disableApkUnlessMatchedSku_skus_list=0x010700a0;
- /** Applications which are disabled unless matching a particular sku
+ /** Applications which are disabled unless matching a particular sku
*/
public static final int config_disableApksUnlessMatchedSku_apk_list=0x0107009f;
- /** ComponentNames of the dreams that we should hide
+ /** ComponentNames of the dreams that we should hide
*/
public static final int config_disabledDreamComponents=0x01070068;
/** The list of IMEs which should be disabled until used.
@@ -718,7 +718,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
4. A pre-installed IME
5. Not enabled
And the disabled_until_used state for an IME is released by InputMethodManagerService
- when the IME is selected as an enabled IME.
+ when the IME is selected as an enabled IME.
*/
public static final int config_disabledUntilUsedPreinstalledImes=0x01070073;
/** The following two arrays specify which color space to use for display composition when a
@@ -736,14 +736,14 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
public static final int config_displayCompositionColorModes=0x0107003c;
public static final int config_displayCompositionColorSpaces=0x0107003d;
/** The display cutout approximation rect config for each display in a multi-display device.
-
+
*/
public static final int config_displayCutoutApproximationRectArray=0x010700d5;
- /** The display cutout path config for each display in a multi-display device.
+ /** The display cutout path config for each display in a multi-display device.
*/
public static final int config_displayCutoutPathArray=0x010700d4;
public static final int config_displayCutoutSideOverrideArray=0x010700d6;
- /** The display shape config for each display in a multi-display device.
+ /** The display shape config for each display in a multi-display device.
*/
public static final int config_displayShapeArray=0x010700ee;
/** An array contains unique ids of all built-in displays and the unique id of a display can be
@@ -769,11 +769,11 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
Leave this array empty for single display device and the system will load the default main
built-in related configs.
-
+
Example:
- "local:1234567891"
// main built-in display
- "local:1234567892"
// secondary built-in display
-
+
*/
public static final int config_displayUniqueIdArray=0x010700d3;
/** See DisplayWhiteBalanceController.
@@ -783,7 +783,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
ambient color temperature readings to a target color temperature for the display.
This table is optional. If used, this array must,
1) Contain at least two entries
- 2) Be the same length as config_displayWhiteBalanceDisplayColorTemperatures.
+ 2) Be the same length as config_displayWhiteBalanceDisplayColorTemperatures.
*/
public static final int config_displayWhiteBalanceAmbientColorTemperatures=0x010700ad;
/** See DisplayWhiteBalanceThrottler.
@@ -809,53 +809,53 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
- If 1000 <= Y, we require Y < (1 - 0) * X = X.
NOTE: the numbers in this example are made up, and don't represent how actual base,
- increase or decrease thresholds would look like.
+ increase or decrease thresholds would look like.
*/
public static final int config_displayWhiteBalanceBaseThresholds=0x010700a2;
/** See DisplayWhiteBalanceThrottler.
The decrease threshold values, throttled if value > value * (1 - threshold). Must be
non-empty, the same length as config_displayWhiteBalanceBaseThresholds, and contain
- non-negative numbers.
+ non-negative numbers.
*/
public static final int config_displayWhiteBalanceDecreaseThresholds=0x010700a4;
/** See DisplayWhiteBalanceController.
An array containing a list of display color temperatures, in Kelvin. See
config_displayWhiteBalanceAmbientColorTemperatures for additional details.
- The same restrictions apply to this array.
+ The same restrictions apply to this array.
*/
public static final int config_displayWhiteBalanceDisplayColorTemperatures=0x010700ae;
/** The nominal white coordinates, in CIE1931 XYZ color space, for Display White Balance to
use in its calculations. AWB will adapt this white point to the target ambient white
- point. The array must include a total of 3 float values (X, Y, Z)
+ point. The array must include a total of 3 float values (X, Y, Z)
*/
public static final int config_displayWhiteBalanceDisplayNominalWhite=0x01070036;
/** The display primaries, in CIE1931 XYZ color space, for display
white balance to use in its calculations. The array must include a total of 12 float
- values: 3 values per color (X, Y, Z) and 4 colors (R, G, B, W)
+ values: 3 values per color (X, Y, Z) and 4 colors (R, G, B, W)
*/
public static final int config_displayWhiteBalanceDisplayPrimaries=0x01070035;
/** Range minimums corresponding to config_displayWhiteBalanceDisplaySteps. For example, if the
range minimums are [0, 3000] and the steps are [10, 20] then between 0 and 3000, exclusive,
the step between them will be 10 (i.e. 0, 10, 20, etc.) and the step between 3000 and the
- maximum value is 20 (i.e. 3000, 3020, 3040, etc.).
+ maximum value is 20 (i.e. 3000, 3020, 3040, etc.).
*/
public static final int config_displayWhiteBalanceDisplayRangeMinimums=0x01070037;
/** Steps corresponding to config_displayWhiteBalanceDisplayRangeMinimums. For example, if the
range minimums are [0, 3000] and the steps are [10, 20] then between 0 and 3000, exclusive,
the step between them will be 10 (i.e. 0, 10, 20, etc.) and the step between 3000 and the
- maximum value is 20 (i.e. 3000, 3020, 3040, etc.).
+ maximum value is 20 (i.e. 3000, 3020, 3040, etc.).
*/
public static final int config_displayWhiteBalanceDisplaySteps=0x01070038;
/** See DisplayWhiteBalanceController.
An array containing a list of biases. See
config_displayWhiteBalanceHighLightAmbientBrightnesses for additional details.
- This array must be in the range of [0.0, 1.0].
+ This array must be in the range of [0.0, 1.0].
*/
public static final int config_displayWhiteBalanceHighLightAmbientBiases=0x010700ab;
/** See DisplayWhiteBalanceController.
An array containing a list of biases. See
config_displayWhiteBalanceHighLightAmbientBrightnessesStrong for additional details.
- This array must be in the range of [0.0, 1.0].
+ This array must be in the range of [0.0, 1.0].
*/
public static final int config_displayWhiteBalanceHighLightAmbientBiasesStrong=0x010700ac;
/** See DisplayWhiteBalanceController.
@@ -867,7 +867,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
config_displayWhiteBalanceHighLightAmbientColorTemperature.
This table is optional. If used, this array must,
1) Contain at least two entries
- 2) Be the same length as config_displayWhiteBalanceHighLightAmbientBiases.
+ 2) Be the same length as config_displayWhiteBalanceHighLightAmbientBiases.
*/
public static final int config_displayWhiteBalanceHighLightAmbientBrightnesses=0x010700a9;
/** See DisplayWhiteBalanceController.
@@ -879,25 +879,25 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
config_displayWhiteBalanceHighLightAmbientColorTemperatureStrong.
This table is optional. If used, this array must,
1) Contain at least two entries
- 2) Be the same length as config_displayWhiteBalanceHighLightAmbientBiasesStrong.
+ 2) Be the same length as config_displayWhiteBalanceHighLightAmbientBiasesStrong.
*/
public static final int config_displayWhiteBalanceHighLightAmbientBrightnessesStrong=0x010700aa;
/** See DisplayWhiteBalanceThrottler.
The increase threshold values, throttled if value < value * (1 + threshold). Must be
non-empty, the same length as config_displayWhiteBalanceBaseThresholds, and contain
- non-negative numbers.
+ non-negative numbers.
*/
public static final int config_displayWhiteBalanceIncreaseThresholds=0x010700a3;
/** See DisplayWhiteBalanceController.
An array containing a list of biases. See
config_displayWhiteBalanceLowLightAmbientBrightnesses for additional details.
- This array must be in the range of [0.0, 1.0].
+ This array must be in the range of [0.0, 1.0].
*/
public static final int config_displayWhiteBalanceLowLightAmbientBiases=0x010700a7;
/** See DisplayWhiteBalanceController.
An array containing a list of biases. See
config_displayWhiteBalanceLowLightAmbientBrightnessesStrong for additional details.
- This array must be in the range of [0.0, 1.0].
+ This array must be in the range of [0.0, 1.0].
*/
public static final int config_displayWhiteBalanceLowLightAmbientBiasesStrong=0x010700a8;
/** See DisplayWhiteBalanceController.
@@ -909,7 +909,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
config_displayWhiteBalanceLowLightAmbientColorTemperature.
This table is optional. If used, this array must,
1) Contain at least two entries
- 2) Be the same length as config_displayWhiteBalanceLowLightAmbientBiases.
+ 2) Be the same length as config_displayWhiteBalanceLowLightAmbientBiases.
*/
public static final int config_displayWhiteBalanceLowLightAmbientBrightnesses=0x010700a5;
/** See DisplayWhiteBalanceController.
@@ -921,41 +921,41 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
config_displayWhiteBalanceLowLightAmbientColorTemperatureIdle.
This table is optional. If used, this array must,
1) Contain at least two entries
- 2) Be the same length as config_displayWhiteBalanceLowLightAmbientBiasesStrong.
+ 2) Be the same length as config_displayWhiteBalanceLowLightAmbientBiasesStrong.
*/
public static final int config_displayWhiteBalanceLowLightAmbientBrightnessesStrong=0x010700a6;
/** See DisplayWhiteBalanceController.
The same as config_displayWhiteBalanceAmbientColorTemperatures, but with a stronger
- visual adjustment.
+ visual adjustment.
*/
public static final int config_displayWhiteBalanceStrongAmbientColorTemperatures=0x010700af;
/** See DisplayWhiteBalanceController.
The same as config_displayWhiteBalanceDisplayColorTemperatures, but with a stronger
- visual adjustment.
+ visual adjustment.
*/
public static final int config_displayWhiteBalanceStrongDisplayColorTemperatures=0x010700b0;
/** List of countries in which we display 'No service' on status bar
- instead of 'Emergency calls only' when SIM is unready.
+ instead of 'Emergency calls only' when SIM is unready.
*/
public static final int config_display_no_service_when_sim_unready=0x0107009c;
/** Mapping to select an Intent.EXTRA_DOCK_STATE value from extcon state
key-value pairs. Each entry is evaluated in order and is of the form:
"[EXTRA_DOCK_STATE value],key1=value1,key2=value2[,...]"
An entry with no key-value pairs is valid and can be used as a wildcard.
-
+
*/
public static final int config_dockExtconStateMapping=0x010700e4;
- /** Vibrator pattern for feedback that simulates a double click effect
+ /** Vibrator pattern for feedback that simulates a double click effect
*/
public static final int config_doubleClickVibePattern=0x01070043;
/** Type of the ambient tap sensor per device posture (defined by WM Jetpack posture).
- Unspecified values use config_dozeTapSensor
+ Unspecified values use config_dozeTapSensor
*/
public static final int config_dozeTapSensorPostureMapping=0x0107006b;
/** See DropBoxManagerService.
An array of dropbox entry tags to marked as low priority. Low priority broadcasts will be
rated limited to a period defined by config_dropboxLowPriorityBroadcastRateLimitPeriod
- (high frequency broadcasts for the tag will be dropped)
+ (high frequency broadcasts for the tag will be dropped)
*/
public static final int config_dropboxLowPriorityTags=0x010700b5;
/** Do not translate. Mcc codes whose existence trigger the presence of emergency
@@ -971,14 +971,14 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
services that do not require user consent, will still work.
See android.credentials.CredentialManager
-
+
*/
public static final int config_enabledCredentialProviderService=0x01070094;
/** A list of potential packages, in priority order, that may contain an
ephemeral resolver. Each package will be be queried for a component
that has been granted the PACKAGE_EPHEMERAL_AGENT permission.
- This may be empty if ephemeral apps are not supported.
- Add packages here
+ This may be empty if ephemeral apps are not supported.
+ Add packages here
*/
public static final int config_ephemeralResolverPackage=0x0107005b;
/** Configuration of Ethernet interfaces in the following format:
@@ -997,63 +997,63 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
the propagation of an interface type on the other end of a local Ethernet
interface. Value must be from NetworkCapabilities#TRANSPORT_* constants. If
left out, this will default to TRANSPORT_ETHERNET.
-
+
- eth1;12,13,14,15;ip=192.168.0.10/24 gateway=192.168.0.1 dns=4.4.4.4,8.8.8.8
- eth2;;ip=192.168.0.11/24
- eth3;12,13,14,15;ip=192.168.0.12/24;1
-
+
*/
public static final int config_ethernet_interfaces=0x01070024;
/** Messages that should not be shown to the user during face authentication, on
BiometricPrompt. This should be used to hide messages that may be too chatty or messages
that the user can't do much about. Entries are defined in
- android.hardware.biometrics.face@1.0 types.hal
+ android.hardware.biometrics.face@1.0 types.hal
*/
public static final int config_face_acquire_biometricprompt_ignorelist=0x010700c1;
- /** [19 to 24 // <25/25] Right 6x
+ /** [19 to 24 // <25/25] Right 6x
Messages that should not be shown to the user during face auth enrollment. This should be
used to hide messages that may be too chatty or messages that the user can't do much about.
- Entries are defined in android.hardware.biometrics.face@1.0 types.hal
+ Entries are defined in android.hardware.biometrics.face@1.0 types.hal
*/
public static final int config_face_acquire_enroll_ignorelist=0x010700bd;
/** Messages that should not be shown to the user during face authentication, on keyguard.
This includes both lockscreen and bouncer. This should be used to hide messages that may be
too chatty or messages that the user can't do much about. Entries are defined in
- android.hardware.biometrics.face@1.0 types.hal
+ android.hardware.biometrics.face@1.0 types.hal
*/
public static final int config_face_acquire_keyguard_ignorelist=0x010700bf;
- /** Same as the above, but are defined by vendorCodes
+ /** Same as the above, but are defined by vendorCodes
*/
public static final int config_face_acquire_vendor_biometricprompt_ignorelist=0x010700c2;
- /** Same as the above, but are defined by vendorCodes
+ /** Same as the above, but are defined by vendorCodes
*/
public static final int config_face_acquire_vendor_enroll_ignorelist=0x010700be;
- /** Same as the above, but are defined by vendorCodes
+ /** Same as the above, but are defined by vendorCodes
*/
public static final int config_face_acquire_vendor_keyguard_ignorelist=0x010700c0;
- /** The fillBuiltInDisplayCutout config for each display in a multi-display device.
+ /** The fillBuiltInDisplayCutout config for each display in a multi-display device.
*/
public static final int config_fillBuiltInDisplayCutoutArray=0x010700d8;
/** The device states (supplied by DeviceStateManager) that should be treated as folded by the
- display fold controller. Default is empty.
+ display fold controller. Default is empty.
Example:
- 0
- 1
- 2
-
+
*/
public static final int config_foldedDeviceStates=0x0107002a;
- /** List of certificate to be used for font fs-verity integrity verification
+ /** List of certificate to be used for font fs-verity integrity verification
*/
public static final int config_fontManagerServiceCerts=0x010700ed;
/** The set of system packages on device that are queryable by any app regardless of the
- contents of its manifest.
- Add packages here
+ contents of its manifest.
+ Add packages here
*/
public static final int config_forceQueryablePackages=0x0107005c;
- /** The list of packages to force slowJpegMode for Apps using Camera API1
- Add packages here
+ /** The list of packages to force slowJpegMode for Apps using Camera API1
+ Add packages here
*/
public static final int config_forceSlowJpegModeList=0x010700c6;
/** The network capabilities that would be forced marked as cellular transport regardless it's
@@ -1074,42 +1074,42 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
"lockdown" = Lock down device until the user authenticates
"logout" = Logout the current user
"system_update" = Launch System Update screen
-
- Show smaller list of items due to smaller real estate.
+
+ Show smaller list of items due to smaller real estate.
*/
public static final int config_globalActionsList=0x01070078;
/** GNSS configurations to override carrier config. Empty by default
- Add configurations here, example:
- - SUPL_HOST=supl.google.com
+ Add configurations here, example:
+ - SUPL_HOST=supl.google.com
*/
public static final int config_gnssParameters=0x010700e3;
/** The device states (supplied by DeviceStateManager) that should be treated as half-folded by
- the display fold controller. Default is empty.
+ the display fold controller. Default is empty.
Example:
- 0
- 1
- 2
-
+
*/
public static final int config_halfFoldedDeviceStates=0x0107002b;
/** Certificate digests for trusted apps that will be allowed to obtain the knownSigner Health
Connect Migration permissions. The digest should be computed over the DER encoding of the
- trusted certificate using the SHA-256 digest algorithm.
+ trusted certificate using the SHA-256 digest algorithm.
*/
public static final int config_healthConnectMigrationKnownSigners=0x010700f0;
/** Certificate digests for trusted apps that will be allowed to obtain the knownSigner
permission for staging HealthConnect's remote data. The digest should be computed over the
- DER encoding of the trusted certificate using the SHA-256 digest algorithm.
+ DER encoding of the trusted certificate using the SHA-256 digest algorithm.
*/
public static final int config_healthConnectRestoreKnownSigners=0x010700ef;
- /** The apps that need to be hidden when they are disabled
+ /** The apps that need to be hidden when they are disabled
*/
public static final int config_hideWhenDisabled_packageNames=0x01070096;
- /** High zone lux thresholds
+ /** High zone lux thresholds
- amb0
- amb1
-
+
*/
public static final int config_highAmbientBrightnessThresholdsOfFixedRefreshRate=0x010700b4;
/** The display uses different gamma curves for different refresh rates. It's hard for panel
@@ -1124,62 +1124,62 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
|| display brightness >= disp1 && ambient brightness >= amb1
Brightness thresholds are paired with lux thresholds - they both have to be met.
A negative brightness or lux value means that only one threshold should be used - e.g. if
- the brightness value is negative, only the lux threshold is applied.
- High zone brightness thresholds in the range [0, 255]
+ the brightness value is negative, only the lux threshold is applied.
+ High zone brightness thresholds in the range [0, 255]
- disp0
- disp1
-
+
*/
public static final int config_highDisplayBrightnessThresholdsOfFixedRefreshRate=0x010700b3;
/** The list of packages to automatically opt out of refresh rates higher than 60hz because
- of known compatibility issues.
+ of known compatibility issues.
*/
public static final int config_highRefreshRateBlacklist=0x010700c4;
/** A list of potential packages, in priority order, that can supply rules to
- AppIntegrityManager. These need to be apps on the system partition.
- Add packages here
+ AppIntegrityManager. These need to be apps on the system partition.
+ Add packages here
*/
public static final int config_integrityRuleProviderPackages=0x010700c8;
- /** Component names of the services which will keep critical code path warm
+ /** Component names of the services which will keep critical code path warm
*/
public static final int config_keep_warming_services=0x010700ce;
- /** @hide This shouldn't be public.
- This string array can be overriden to add an additional DRM support for WebView EME.
- Array of "[keySystemName],[UuidOfMediaDrm]"
+ /** @hide This shouldn't be public.
+ This string array can be overriden to add an additional DRM support for WebView EME.
+ Array of "[keySystemName],[UuidOfMediaDrm]"
Example:
- "x-com.microsoft.playready,9A04F079-9840-4286-AB92-E65BE0885F95"
-
+
*/
@android.annotation.SystemApi
public static final int config_keySystemUuidMapping=0x01070005;
/** Controls if local secondary displays should be private or not. Value specified in the array
represents physical port address of each display and display in this list will be marked
- as private. {@see android.view.Display#FLAG_PRIVATE}
+ as private. {@see android.view.Display#FLAG_PRIVATE}
*/
public static final int config_localPrivateDisplayPorts=0x0107006e;
/** Package name(s) of Advanced Driver Assistance applications. These packages have additional
management of access to location, specific to driving assistance use-cases. They must be system
packages. This configuration is only applicable to devices that declare
- PackageManager.FEATURE_AUTOMOTIVE.
+ PackageManager.FEATURE_AUTOMOTIVE.
*/
public static final int config_locationDriverAssistancePackageNames=0x01070061;
public static final int config_locationExtraPackageNames=0x0107005f;
/** Package name(s) containing location provider support. These packages will be auto-granted
- several permissions by the system, and should be system packages.
+ several permissions by the system, and should be system packages.
*/
public static final int config_locationProviderPackageNames=0x01070060;
/** The prefixes of dream component names that are loggable.
Matched against ComponentName#flattenToString() for dream components.
- If empty, logs "other" for all.
+ If empty, logs "other" for all.
*/
public static final int config_loggable_dream_prefixes=0x0107006a;
/** The possible UI options to be surfaced for configuring long press power on duration
action. Value set in config_longPressOnPowerDurationMs should be one of the available
- options to allow users to restore default.
+ options to allow users to restore default.
*/
public static final int config_longPressOnPowerDurationSettings=0x0107003e;
- /** Vibrator pattern for feedback about a long screen/key press
+ /** Vibrator pattern for feedback about a long screen/key press
*/
public static final int config_longPressVibePattern=0x01070041;
/** Thresholds for LTE dbm in status bar
@@ -1193,22 +1193,22 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
- Option 2 - Right.
- Option 3 - Bottom.
When there are cutouts on multiple edges of the display, the override won't take any
- effect.
+ effect.
Example of at top for rotation 0 and 90, and at bottom for rotation 180 and 270:
- 1
- 1
- 3
- 3
-
+
*/
public static final int config_mainBuiltInDisplayCutoutSideOverride=0x01070084;
public static final int config_mainBuiltInDisplayWaterfallCutout=0x010700d9;
/** Mapping for default ColorDisplayManager.COLOR_MODE_xxx to other color modes, if
- if applicable. By default, all map to the same value.
- COLOR_MODE_AUTOMATIC
+ if applicable. By default, all map to the same value.
+ COLOR_MODE_AUTOMATIC
*/
public static final int config_mappedColorModes=0x0107003b;
- /** The maskBuiltInDisplayCutout config for each display in a multi-display device.
+ /** The maskBuiltInDisplayCutout config for each display in a multi-display device.
*/
public static final int config_maskBuiltInDisplayCutoutArray=0x010700d7;
/** Array of lux values to define the minimum brightness curve, which guarantees that any
@@ -1217,7 +1217,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
resetting or disabling it.
The values must be non-negative and strictly increasing, and correspond to the values in
- the config_minimumBrightnessCurveNits array.
+ the config_minimumBrightnessCurveNits array.
*/
public static final int config_minimumBrightnessCurveLux=0x01070047;
/** Array of nits values to define the minimum brightness curve, which guarantees that any
@@ -1226,15 +1226,15 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
brightness.
The values must be non-negative and non-decreasing, and correspond to the values in the
- config_minimumBrightnessCurveLux array.
+ config_minimumBrightnessCurveLux array.
*/
public static final int config_minimumBrightnessCurveNits=0x01070048;
/** This setting is deprecated, please use
- com.android.networkstack.tethering.R.array.config_mobile_hotspot_provision_app instead.
+ com.android.networkstack.tethering.R.array.config_mobile_hotspot_provision_app instead.
- com.example.provisioning
- com.example.provisioning.Activity
-
+
*/
public static final int config_mobile_hotspot_provision_app=0x01070025;
/** Configure mobile tcp buffer sizes in the form:
@@ -1243,39 +1243,39 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
This is deprecated. Please use config_mobile_tcp_buffers for rat-based TCP buffers sizes or
config_tcp_buffers for rat-independent TCP buffer sizes.
-
+
*/
public static final int config_mobile_tcp_buffers=0x0107006d;
- /** What types of network switches to notify. See LingerMonitor.java.
+ /** What types of network switches to notify. See LingerMonitor.java.
*/
public static final int config_networkNotifySwitches=0x0107001e;
/** Default supported concurrent socket keepalive slots per transport type, used by
ConnectivityManager.createSocketKeepalive() for calculating the number of keepalive
offload slots that should be reserved for privileged access. This string array should be
- overridden by the device to present the capability of creating socket keepalives.
- An Array of "[NetworkCapabilities.TRANSPORT_*],[supported keepalives]
+ overridden by the device to present the capability of creating socket keepalives.
+ An Array of "[NetworkCapabilities.TRANSPORT_*],[supported keepalives]
*/
public static final int config_networkSupportedKeepaliveCount=0x0107001f;
- /** This file defines Android telephony related resources
+ /** This file defines Android telephony related resources
Configure tcp buffer sizes per network type in the form:
network-type:rmem_min,rmem_def,rmem_max,wmem_min,wmem_def,wmem_max
The network-type must be a valid DataConfigNetworkType value. If no value is found for the
network-type in use, config_tcp_buffers will be used instead.
-
+
*/
public static final int config_network_type_tcp_buffers=0x010700f2;
public static final int config_nightDisplayColorTemperatureCoefficients=0x01070032;
public static final int config_nightDisplayColorTemperatureCoefficientsNative=0x01070031;
/** These IMEs are known not to behave well when evicted from memory and thus are exempt
from the IME startup prevention behavior that is enabled by
- config_preventImeStartupUnlessTextEditor.
+ config_preventImeStartupUnlessTextEditor.
*/
public static final int config_nonPreemptibleInputMethods=0x01070074;
/** Vibrator pattern to be used as the default for notifications
that do not specify vibration but vibrate anyway because the device
is in vibrate mode.
-
+
*/
public static final int config_notificationFallbackVibePattern=0x01070071;
/** A vibration waveform for notifications that do not specify vibration but vibrate anyway,
@@ -1284,11 +1284,11 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
This is only applied on devices with vibration frequency control. If the device doesn't
support frequency control, then the vibration specified in
config_notificationFallbackVibePattern is used instead.
-
+
*/
public static final int config_notificationFallbackVibeWaveform=0x01070072;
/** List of packages that can use the Conversation space for their category messages
- notifications until they target R
+ notifications until they target R
*/
public static final int config_notificationMsgPkgsAllowedAsConvos=0x010700c3;
/** The list of classes that should be added to the notification ranking pipeline.
@@ -1299,7 +1299,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
public static final int config_notificationSignalExtractors=0x01070075;
/** SNTP client config: NTP servers to use to obtain an accurate time.
Items must be in the form: "ntp://[:port]"
- This is not a registered IANA URI scheme.
+ This is not a registered IANA URI scheme.
*/
public static final int config_ntpServers=0x01070067;
/** Array of OEM specific USB mode override config.
@@ -1310,16 +1310,16 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
public static final int config_oemUsbModeOverride=0x0107006c;
/** List of country codes where oem-enabled satellite services are either allowed or disallowed
by the device. Each country code is a lowercase 2 character ISO-3166-1 alpha-2.
-
+
*/
public static final int config_oem_enabled_satellite_country_codes=0x010700f4;
/** The device states (supplied by DeviceStateManager) that should be treated as open by the
- device fold controller. Default is empty.
+ device fold controller. Default is empty.
Example:
- 0
- 1
- 2
-
+
*/
public static final int config_openDeviceStates=0x01070029;
/** Optional IPsec algorithms enabled by this device, defaulting to empty. OEMs can override
@@ -1332,13 +1332,13 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
"hmac(sha1)", "hmac(sha256)", "hmac(sha384)", "hmac(sha512)", "rfc4106(gcm(aes))"
* SDK level 31 makes the following algorithms mandatory : "rfc3686(ctr(aes))",
"xcbc(aes)", "cmac(aes)", "rfc7539esp(chacha20,poly1305)"
-
- Add algorithm here
+
+ Add algorithm here
*/
public static final int config_optionalIpSecAlgorithms=0x01070063;
- /** Names of packages that should not be suspended when personal use is blocked by policy.
- Add packages here, example:
- - com.android.settings
+ /** Names of packages that should not be suspended when personal use is blocked by policy.
+ Add packages here, example:
+ - com.android.settings
*/
public static final int config_packagesExemptFromSuspension=0x010700ca;
/** Map of device posture to rotation lock setting. Each entry must be in the format
@@ -1347,7 +1347,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
Settings.Secure.DeviceStateRotationLockSetting.
The fallback is a key to a device posture that can be specified when the value is
Settings.Secure.DEVICE_STATE_ROTATION_LOCK_IGNORED.
-
+
*/
public static final int config_perDeviceStateRotationLockDefaults=0x01070030;
/** The component name(s), flattened to a string, for the system's primary credential manager
@@ -1356,72 +1356,72 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
These services must be trusted, as they can be activated without explicit consent of the user.
See android.credentials.CredentialManager
-
+
*/
public static final int config_primaryCredentialProviderService=0x01070095;
/** An array of packages that can make sound on the ringer stream in priority-only DND
- mode
+ mode
*/
public static final int config_priorityOnlyDndExemptPackages=0x0107008c;
- /** Names of packages excluded by Profcollect onCameraOpened observer.
+ /** Names of packages excluded by Profcollect onCameraOpened observer.
*/
public static final int config_profcollectOnCameraOpenedSkipPackages=0x010700c9;
/** Array of ConnectivityManager.TYPE_xxxx constants for networks that may only
- be controlled by systemOrSignature apps.
+ be controlled by systemOrSignature apps.
*/
public static final int config_protectedNetworks=0x0107001c;
/** The device states (supplied by DeviceStateManager) that should be treated as a rear display
- state. Default is empty.
+ state. Default is empty.
Example:
- 0
- 1
- 2
-
+
*/
public static final int config_rearDisplayDeviceStates=0x0107002c;
public static final int config_reduceBrightColorsCoefficients=0x01070034;
public static final int config_reduceBrightColorsCoefficientsNonlinear=0x01070033;
/** Array containing the usages that should request vibration params before they are played.
These usages don't have strong latency requirements, e.g. ringtone and notification, and
- can be slightly delayed.
- USAGE_COMMUNICATION_REQUEST
+ can be slightly delayed.
+ USAGE_COMMUNICATION_REQUEST
*/
public static final int config_requestVibrationParamsForUsages=0x0107001a;
- /** Which binder services to include in incident reports containing restricted images.
+ /** Which binder services to include in incident reports containing restricted images.
*/
public static final int config_restrictedImagesServices=0x010700b6;
/** The URI to associate with each ringtone effect constant, intended to be used with the
android.os.VibrationEffect#get(Uri, Context) API.
The position of the string in the string-array determines which ringtone effect is chosen.
For example, if the URI passed into get match the third string in the string-array, then
- RINGTONE_3 will be the returned effect
+ RINGTONE_3 will be the returned effect
*/
public static final int config_ringtoneEffectUris=0x01070046;
- /** The rounded corner radius bottom adjustment for each display in a multi-display device.
+ /** The rounded corner radius bottom adjustment for each display in a multi-display device.
*/
public static final int config_roundedCornerBottomRadiusAdjustmentArray=0x010700e2;
- /** The bottom rounded corner radius for each display in a multi-display device.
+ /** The bottom rounded corner radius for each display in a multi-display device.
*/
public static final int config_roundedCornerBottomRadiusArray=0x010700df;
- /** The rounded corner radius adjustment for each display in a multi-display device.
+ /** The rounded corner radius adjustment for each display in a multi-display device.
*/
public static final int config_roundedCornerRadiusAdjustmentArray=0x010700e0;
- /** The rounded corner radius for each display in a multi-display device.
+ /** The rounded corner radius for each display in a multi-display device.
*/
public static final int config_roundedCornerRadiusArray=0x010700dd;
- /** The rounded corner radius top adjustment for each display in a multi-display device.
+ /** The rounded corner radius top adjustment for each display in a multi-display device.
*/
public static final int config_roundedCornerTopRadiusAdjustmentArray=0x010700e1;
- /** The top rounded corner radius for each display in a multi-display device.
+ /** The top rounded corner radius for each display in a multi-display device.
*/
public static final int config_roundedCornerTopRadiusArray=0x010700de;
- /** Vibrator pattern for feedback about booting with safe mode enabled
+ /** Vibrator pattern for feedback about booting with safe mode enabled
*/
public static final int config_safeModeEnabledVibePattern=0x01070045;
/** Telephony config for the PLMNs of all satellite providers. This is used by satellite modem
to identify providers that should be ignored if the carrier config
carrier_supported_satellite_services_per_provider_bundle does not support them.
-
+
*/
public static final int config_satellite_providers=0x010700f3;
/** Array of hysteresis constraint values for brightening, represented as tenths of a
@@ -1429,13 +1429,13 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
config_screenThresholdLevels. The brightening threshold is calculated as
screenBrightness * (1.0f + CONSTRAINT_VALUE). When the new screen brightness is higher
than this threshold, it is applied. See the config_screenThresholdLevels description for
- how the constraint value is chosen.
+ how the constraint value is chosen.
*/
public static final int config_screenBrighteningThresholds=0x01070059;
/** An array describing the screen's backlight values corresponding to the brightness
values in the config_screenBrightnessNits array.
- This array should be equal in size to config_screenBrightnessBacklight.
+ This array should be equal in size to config_screenBrightnessBacklight.
*/
public static final int config_screenBrightnessBacklight=0x01070053;
/** An array of floats describing the screen brightness in nits corresponding to the backlight
@@ -1444,7 +1444,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
Note that this value should *not* reflect the maximum brightness value for any high
brightness modes but only the maximum brightness value obtainable in a sustainable manner.
- This array should be equal in size to config_screenBrightnessBacklight
+ This array should be equal in size to config_screenBrightnessBacklight
*/
public static final int config_screenBrightnessNits=0x01070054;
/** Array of hysteresis constraint values for darkening, represented as tenths of a
@@ -1452,7 +1452,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
config_screenThresholdLevels. The darkening threshold is calculated as
screenBrightness * (1.0f - CONSTRAINT_VALUE). When the new screen brightness is lower than
this threshold, it is applied. See the config_screenThresholdLevels description for how
- the constraint value is chosen.
+ the constraint value is chosen.
*/
public static final int config_screenDarkeningThresholds=0x0107005a;
/** Array of screen brightness threshold values. This is used for determining hysteresis
@@ -1471,34 +1471,34 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
condition calculated index
value < level[0] 0
level[n] <= value < level[n+1] n+1
- level[MAX] <= value MAX+1
+ level[MAX] <= value MAX+1
*/
public static final int config_screenThresholdLevels=0x01070058;
public static final int config_secondaryBuiltInDisplayCutoutSideOverride=0x010700d2;
public static final int config_secondaryBuiltInDisplayWaterfallCutout=0x010700da;
/** Packages that contain a security state.
{@link SecurityStateManager#getGlobalSecurityState} will read and report the state/version
- of these packages.
+ of these packages.
*/
public static final int config_securityStatePackages=0x010700a1;
/** List of paths to serial ports that are available to the serial manager.
for example, /dev/ttyUSB0
-
+
*/
public static final int config_serialPorts=0x01070040;
/** List of system components which are allowed to receive ServiceState entries in an
un-sanitized form, even if the location toggle is off. This is intended ONLY for system
components, such as the telephony stack, which require access to the full ServiceState for
- tasks such as network registration.
+ tasks such as network registration.
*/
public static final int config_serviceStateLocationAllowedPackages=0x010700ec;
- /** When each intermediate SFPS enroll stage ends, as a fraction of total progress.
- [13 to 18 // <19/25] Left 6x
+ /** When each intermediate SFPS enroll stage ends, as a fraction of total progress.
+ [13 to 18 // <19/25] Left 6x
*/
public static final int config_sfps_enroll_stage_thresholds=0x010700bc;
/** An array of arrays of side fingerprint sensor properties relative to each display.
Note: this value is temporary and is expected to be queried directly
- from the HAL in the future.
+ from the HAL in the future.
- displayId
@@ -1506,17 +1506,17 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
- sensorLocationY
- sensorRadius
-
+
*/
public static final int config_sfps_sensor_props=0x010700ba;
/** List of shared library packages that should be loaded by the classloader after the
- code and resources provided by applications. This value will be set by the manufacturer
+ code and resources provided by applications. This value will be set by the manufacturer
*/
public static final int config_sharedLibrariesLoadedAfterApp=0x010700d1;
/** The list of packages to automatically opt in to refresh rate suppressing by small area
detection. Format of this array should be packageName:threshold and threshold value should
be between 0 to 1
- Add packages:threshold here
+ Add packages:threshold here
*/
public static final int config_smallAreaDetectionAllowlist=0x010700c5;
/** National language locking shift tables to enable for SMS encoding.
@@ -1528,7 +1528,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
to be enabled (est. July 2012). (http://www.btk.gov.tr/eng/pdf/2009/BY-LAW_SMS.pdf)
See also: http://www.mobitech.com.tr/tr/ersanozturkblog_en/index.php?entry=entry090223-160014
Example 2: devices sold in India should include tables 4 through 13
- to enable use of the new Release 9 tables for Indic languages.
+ to enable use of the new Release 9 tables for Indic languages.
*/
public static final int config_sms_enabled_locking_shift_tables=0x01070066;
/** National Language Identifier codes for the following two config items.
@@ -1547,7 +1547,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
11 - Tamil
12 - Telugu
13 - Urdu
- 14+ - reserved
+ 14+ - reserved
National language single shift tables to enable for SMS encoding.
Decoding is always enabled. 3GPP TS 23.038 states that this feature
should not be enabled until a formal request is issued by the relevant
@@ -1555,21 +1555,21 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
Example 1: devices sold in Turkey must include table 1 to conform with
By-Law Number 27230. (http://www.btk.gov.tr/eng/pdf/2009/BY-LAW_SMS.pdf)
Example 2: devices sold in India should include tables 4 through 13
- to enable use of the new Release 9 tables for Indic languages.
+ to enable use of the new Release 9 tables for Indic languages.
*/
public static final int config_sms_enabled_single_shift_tables=0x01070065;
/** Do not translate. Defines the slots for the right-hand side icons. That is to say, the
- icons in the status bar that are not notifications.
+ icons in the status bar that are not notifications.
*/
public static final int config_statusBarIcons=0x01070019;
- /** The list of supported dream complications
+ /** The list of supported dream complications
*/
public static final int config_supportedDreamComplications=0x01070069;
/** The list of supported cellular usage settings for this device.
- USAGE_SETTING_DATA_CENTRIC
+ USAGE_SETTING_DATA_CENTRIC
*/
public static final int config_supported_cellular_usage_settings=0x01070080;
- /** Enabled built-in zen mode condition providers
+ /** Enabled built-in zen mode condition providers
*/
public static final int config_system_condition_providers=0x01070082;
/** An array of device capabilities defined by GSMA SGP.22 v2.0.
@@ -1587,7 +1587,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
nrepc : nrEpcSupportedRelease
nr5gc : nr5gcSupportedRelease
eutran5gc : eutran5gcSupportedRelease
-
+
Example:
- "gsm,11"
- "utran,11"
@@ -1600,16 +1600,16 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
- "nrepc,15"
- "nr5gc,15"
- "eutran5gc,15"
-
+
*/
public static final int config_telephonyEuiccDeviceCapabilities=0x01070079;
/** default telephony hardware configuration for this platform.
-
+
this string array should be overridden by the device to present a list
telephony hardware resource. this is used by the telephony device controller
(TDC) to offer the basic capabilities of the hardware to the telephony
framework
-
+
an array of "[hardware type],[hardware-uuid],[state],[[hardware-type specific]]"
with, [[hardware-type specific]] in:
- "[[ril-model],[rat],[max-active-voice],[max-active-data],[max-active-standby]]"
@@ -1618,56 +1618,56 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
for 'sim' hardware.
refer to HardwareConfig in com.android.internal.telephony for specific details/values
those elements can carry.
-
+
*/
public static final int config_telephonyHardware=0x0107007a;
- /** This string array can be overriden to enable test location providers initially.
+ /** This string array can be overriden to enable test location providers initially.
Array of "[locationProviderName],[requiresNetwork],
[requiresSatellite],[requiresCell],[hasMonetaryCost],
[supportAltitute],[supportsSpeed],[supportsBearing],
- [powerRequirement],[accuracy]"
+ [powerRequirement],[accuracy]"
powerRequirement is defined in android.location.Criteria
- 0 = NO_REQUIREMENT / 1 = POWER_LOW / 2 = POWER_MEDIUM / 3 = POWER_HIGH
+ 0 = NO_REQUIREMENT / 1 = POWER_LOW / 2 = POWER_MEDIUM / 3 = POWER_HIGH
accuracy is defined in anroid.location.Criteria
- 1 = ACCURACY_FINE / 2 = ACCURACY_COARSE
+ 1 = ACCURACY_FINE / 2 = ACCURACY_COARSE
Example test network location provider
- network,false,false,false,false,true,true,true,1,2
-
+
*/
public static final int config_testLocationProviders=0x01070062;
/** This setting is deprecated, please use
- com.android.networkstack.tethering.R.array.config_tether_bluetooth_regexs instead.
+ com.android.networkstack.tethering.R.array.config_tether_bluetooth_regexs instead.
*/
public static final int config_tether_bluetooth_regexs=0x01070022;
/** This setting is deprecated, please use
- com.android.networkstack.tethering.R.array.config_dhcp_range instead.
+ com.android.networkstack.tethering.R.array.config_dhcp_range instead.
*/
public static final int config_tether_dhcp_range=0x01070023;
/** This setting is deprecated, please use
- com.android.networkstack.tethering.R.array.config_tether_upstream_types.
+ com.android.networkstack.tethering.R.array.config_tether_upstream_types.
*/
public static final int config_tether_upstream_types=0x01070026;
/** This setting is deprecated, please use
- com.android.networkstack.tethering.R.array.config_tether_usb_regexs instead.
+ com.android.networkstack.tethering.R.array.config_tether_usb_regexs instead.
*/
public static final int config_tether_usb_regexs=0x01070020;
/** This setting is deprecated, please use
- com.android.networkstack.tethering.R.array.config_tether_wifi_regexs instead.
+ com.android.networkstack.tethering.R.array.config_tether_wifi_regexs instead.
*/
public static final int config_tether_wifi_regexs=0x01070021;
/** Toasts posted from these packages will be shown to the current user, regardless of the user
the process belongs to. This is useful for packages that run under a single user but serve
multiple users, e.g. the system.
- These packages MUST be able to add flag SYSTEM_FLAG_SHOW_FOR_ALL_USERS to a window.
+ These packages MUST be able to add flag SYSTEM_FLAG_SHOW_FOR_ALL_USERS to a window.
*/
public static final int config_toastCrossUserPackages=0x010700cd;
/** Array of component names, each flattened to a string, for accessibility services that
can be enabled by the user without showing a warning prompt. These services must be
- preinstalled.
+ preinstalled.
- com.example.package.first/com.example.class.FirstService
- com.example.package.second/com.example.class.SecondService
-
+
*/
public static final int config_trustedAccessibilityServices=0x0107008d;
public static final int config_tvExternalInputLoggingDeviceBrandNames=0x010700f7;
@@ -1675,18 +1675,18 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
/** Do not translate. Defines the slots is Two Digit Number for dialing normally not USSD.
Note: This config is deprecated, please use carrier config which is
- CarrierConfigManager.KEY_MMI_TWO_DIGIT_NUMBER_PATTERN_STRING_ARRAY instead.
+ CarrierConfigManager.KEY_MMI_TWO_DIGIT_NUMBER_PATTERN_STRING_ARRAY instead.
*/
public static final int config_twoDigitNumberPattern=0x01070064;
- /** When each intermediate UDFPS enroll stage ends, as a fraction of total progress.
+ /** When each intermediate UDFPS enroll stage ends, as a fraction of total progress.
*/
public static final int config_udfps_enroll_stage_thresholds=0x010700bb;
- /** The properties of a UDFPS sensor in pixels, in the order listed below:
+ /** The properties of a UDFPS sensor in pixels, in the order listed below:
- sensorLocationX
- sensorLocationY
- sensorRadius
-
+
*/
public static final int config_udfps_sensor_props=0x010700b8;
/** The properties for handling UDFPS touch detection
@@ -1699,38 +1699,38 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
[target_size]: percentage (defined as a float of 0-1) of sensor that is considered the target, expands outward from center
[min_ellipse_overlap_percentage]: minimum percentage (float from 0-1) needed to be considered a valid overlap
[step_size]: size of each step when iterating over sensor pixel grid
-
+
*/
public static final int config_udfps_touch_detection_options=0x010700b9;
/** List of file paths for USB host busses to exclude from USB host support.
For example, if the first USB bus on the device is used to communicate
with the modem or some other restricted hardware, add "/dev/bus/usb/001/"
to this list. If this is empty, no parts of the host USB bus will be excluded.
-
+
*/
public static final int config_usbHostDenylist=0x0107003f;
- /** Vibrator pattern for feedback about touching a virtual key
+ /** Vibrator pattern for feedback about touching a virtual key
*/
public static final int config_virtualKeyVibePattern=0x01070042;
/** A array of regex to treat a SMS as VVM SMS if the message body matches.
Each item represents an entry, which consists of two parts:
a comma (,) separated list of MCCMNC the regex applies to, followed by a semicolon (;), and
- then the regex itself.
+ then the regex itself.
*/
public static final int config_vvmSmsFilterRegexes=0x0107008a;
- /** The waterfall cutout config for each display in a multi-display device.
+ /** The waterfall cutout config for each display in a multi-display device.
*/
public static final int config_waterfallCutoutArray=0x010700db;
- /** Wear devices: Controls the radios affected by Activity Mode.
+ /** Wear devices: Controls the radios affected by Activity Mode.
*/
public static final int config_wearActivityModeRadios=0x0107009e;
- /** Template for showing mobile network operator name while Cross SIM calling is active
+ /** Template for showing mobile network operator name while Cross SIM calling is active
*/
public static final int crossSimSpnFormats=0x01070107;
- /**
+ /**
A collection of apps that have been pre-approved for cross-profile communication.
These will not require admin or user consent.
-
+
*/
public static final int cross_profile_apps=0x010700f8;
/** Default wallpaper component per device color map, each item is a comma separated key-value
@@ -1739,12 +1739,12 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
default wallpaper component will be the default if this config is not specified.
E.g. for SLV color, and com.android.example/com.android.example.SlVDefaultWallpaper
- - SLV,com.android.example/com.android.example.SlVDefaultWallpaper
- Add packages here
+ - SLV,com.android.example/com.android.example.SlVDefaultWallpaper
+ Add packages here
*/
public static final int default_wallpaper_component_per_device_color=0x0107005d;
/** Certificate digests for trusted apps that will be allowed to obtain the knownSigner of the
- demo device provisioning permissions.
+ demo device provisioning permissions.
*/
public static final int demo_device_provisioning_known_signers=0x01070017;
public static final int device_state_notification_active_contents=0x01070012;
@@ -1753,74 +1753,74 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
public static final int device_state_notification_power_save_contents=0x01070016;
public static final int device_state_notification_power_save_titles=0x01070015;
/** Device state identifiers and strings for system notifications. The string arrays must have
- the same length and order as the identifier array.
+ the same length and order as the identifier array.
*/
public static final int device_state_notification_state_identifiers=0x0107000f;
public static final int device_state_notification_thermal_contents=0x01070014;
public static final int device_state_notification_thermal_titles=0x01070013;
- /** service number convert map in roaming network.
- [dialstring],[replacement][,optional gid]
+ /** service number convert map in roaming network.
+ [dialstring],[replacement][,optional gid]
*/
public static final int dial_string_replace=0x0107007e;
- /** A list of apps to be removed from the managed device.
+ /** A list of apps to be removed from the managed device.
*/
public static final int disallowed_apps_managed_device=0x010700f9;
- /** A list of apps to be removed from the managed profile.
+ /** A list of apps to be removed from the managed profile.
*/
public static final int disallowed_apps_managed_profile=0x010700fa;
- /** A list of apps to be removed from the managed user.
+ /** A list of apps to be removed from the managed user.
*/
public static final int disallowed_apps_managed_user=0x010700fb;
- /** Email address types from android.provider.Contacts. This could be used when adding a new e-mail address for a contact, for example.
+ /** Email address types from android.provider.Contacts. This could be used when adding a new e-mail address for a contact, for example.
*/
public static final int emailAddressTypes=0x01070000;
- /** Array containing custom messages shown during face acquisition from vendor. Vendor is expected to add and translate these strings
+ /** Array containing custom messages shown during face acquisition from vendor. Vendor is expected to add and translate these strings
*/
public static final int face_acquired_vendor=0x0107010a;
- /** Array containing custom error messages from vendor. Vendor is expected to add and translate these strings
+ /** Array containing custom error messages from vendor. Vendor is expected to add and translate these strings
*/
public static final int face_error_vendor=0x0107010b;
- /** Array containing custom messages shown during fingerprint acquisision from vendor. Vendor is expected to add and translate these strings
+ /** Array containing custom messages shown during fingerprint acquisision from vendor. Vendor is expected to add and translate these strings
*/
public static final int fingerprint_acquired_vendor=0x01070108;
- /** Array containing custom error messages from vendor. Vendor is expected to add and translate these strings
+ /** Array containing custom error messages from vendor. Vendor is expected to add and translate these strings
*/
public static final int fingerprint_error_vendor=0x01070109;
- /** Instant Messenger ID types from android.provider.Contacts. This could be used when adding a new IM for a contact, for example.
+ /** Instant Messenger ID types from android.provider.Contacts. This could be used when adding a new IM for a contact, for example.
*/
public static final int imAddressTypes=0x0107010c;
- /** Instant Message protocols/providers from android.provider.Contacts
+ /** Instant Message protocols/providers from android.provider.Contacts
*/
public static final int imProtocols=0x01070001;
- /** Do not translate.
+ /** Do not translate.
*/
public static final int maps_starting_lat_lng=0x010700fc;
- /** Do not translate.
+ /** Do not translate.
*/
public static final int maps_starting_zoom=0x010700fd;
/** XXXXX NOTE THE FOLLOWING RESOURCES USE THE WRONG NAMING CONVENTION.
- Please don't copy them, copy anything else.
+ Please don't copy them, copy anything else.
This string array should be overridden by the device to present a list of network
attributes. This is used by the connectivity manager to decide which networks can coexist
- based on the hardware
+ based on the hardware
An Array of "[Connection name],[ConnectivityManager.TYPE_xxxx],
- [associated radio-type],[priority],[restoral-timer(ms)],[dependencyMet]
+ [associated radio-type],[priority],[restoral-timer(ms)],[dependencyMet]
the 5th element "resore-time" indicates the number of milliseconds to delay
before automatically restore the default connection. Set -1 if the connection
- does not require auto-restore.
- the 6th element indicates boot-time dependency-met value.
+ does not require auto-restore.
+ the 6th element indicates boot-time dependency-met value.
NOTE: The telephony module is no longer reading the configuration below for available
APN types. The set of APN types and relevant settings are specified within the telephony
module and are non-configurable. Whether or not data connectivity over a cellular network
- is available at all is controlled by the flag: config_moble_data_capable.
+ is available at all is controlled by the flag: config_moble_data_capable.
*/
public static final int networkAttributes=0x0107001b;
- /** Network type names used in the network_switch_metered and network_switch_metered_detail strings. These must be kept in the sync with the values NetworkCapabilities.TRANSPORT_xxx values, and in the same order.
+ /** Network type names used in the network_switch_metered and network_switch_metered_detail strings. These must be kept in the sync with the values NetworkCapabilities.TRANSPORT_xxx values, and in the same order.
*/
public static final int network_switch_type_name=0x0107010d;
/** networks that don't want data deactivate when shutdown the phone
note this is dependent on the operator of the network we're on,
- not operator on the SIM
+ not operator on the SIM
*/
public static final int networks_not_clear_data=0x0107007f;
/** If EMS is not supported, framework breaks down EMS into single segment SMS
@@ -1829,7 +1829,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
We use tag 'prefix' for position beginning and 'suffix' for position end.
And use gid to distinguish different carriers which using same mcc and mnc.
Examples: - simOperatorNumber;position;gid(optional)
>
-
+
*/
public static final int no_ems_support_sim_operators=0x0107007c;
/** Device-specific array of SIM slot indexes which are are embedded eUICCs.
@@ -1845,103 +1845,103 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
- 2
This is used to differentiate between removable eUICCs and built in eUICCs, and should
- be set by OEMs for devices which use eUICCs.
+ be set by OEMs for devices which use eUICCs.
*/
public static final int non_removable_euicc_slots=0x0107000e;
- /** Organization types from android.provider.Contacts. This could be used when adding a new organization for a contact, for example.
+ /** Organization types from android.provider.Contacts. This could be used when adding a new organization for a contact, for example.
*/
public static final int organizationTypes=0x01070002;
- /** The list of packages to pause wallpaper rendering upon state change such as app launch
- Add packages here
+ /** The list of packages to pause wallpaper rendering upon state change such as app launch
+ Add packages here
*/
public static final int pause_wallpaper_render_when_state_change=0x010700c7;
- /** Phone number types from android.provider.Contacts. This could be used when adding a new phone number for a contact, for example.
+ /** Phone number types from android.provider.Contacts. This could be used when adding a new phone number for a contact, for example.
*/
public static final int phoneTypes=0x01070003;
- /**
+ /**
A collection of apps that are critical for the device and hence will never be disabled by
device policies or APIs.
-
+
*/
public static final int policy_exempt_apps=0x01070100;
- /** Postal address types from android.provider.Contacts. This could be used when adding a new address for a contact, for example.
+ /** Postal address types from android.provider.Contacts. This could be used when adding a new address for a contact, for example.
*/
public static final int postalAddressTypes=0x01070004;
/** Do not translate. These are all of the color state list resources that should be
- preloaded by the zygote process before it starts forking application processes.
+ preloaded by the zygote process before it starts forking application processes.
*/
public static final int preloaded_color_state_lists=0x01070007;
/** Do not translate. These are all of the drawable resources that should be preloaded by
- the zygote process before it starts forking application processes.
+ the zygote process before it starts forking application processes.
*/
public static final int preloaded_drawables=0x01070006;
/** This string array should be overridden by the device to present a list of radio
attributes. This is used by the connectivity manager to decide which networks can coexist
- based on the hardware
+ based on the hardware
An Array of "[ConnectivityManager connectionType],
- [# simultaneous connection types]"
+ [# simultaneous connection types]"
*/
public static final int radioAttributes=0x0107001d;
/** A list of apps to be retained on the managed device.
- Takes precedence over the disallowed apps lists.
+ Takes precedence over the disallowed apps lists.
*/
public static final int required_apps_managed_device=0x01070101;
/** A list of apps to be retained in the managed profile.
- Takes precedence over the disallowed apps lists.
+ Takes precedence over the disallowed apps lists.
*/
public static final int required_apps_managed_profile=0x01070102;
/** A list of apps to be retained on the managed user.
- Takes precedence over the disallowed apps lists.
+ Takes precedence over the disallowed apps lists.
*/
public static final int required_apps_managed_user=0x01070103;
- /** Used in ResolverTargetActionsDialogFragment
+ /** Used in ResolverTargetActionsDialogFragment
*/
public static final int resolver_target_actions_pin=0x0107000b;
public static final int resolver_target_actions_unpin=0x0107000c;
public static final int sim_colors=0x0107000a;
- /** Used in LocalePicker
+ /** Used in LocalePicker
*/
public static final int special_locale_codes=0x01070008;
- /** Used in LocalePicker
+ /** Used in LocalePicker
*/
public static final int special_locale_names=0x01070009;
- /** Zulu (South Africa)
+ /** Zulu (South Africa)
*/
public static final int supported_locales=0x010700ff;
- /** String array containing numbers that shouldn't be logged. Country-specific.
+ /** String array containing numbers that shouldn't be logged. Country-specific.
*/
public static final int unloggable_phone_numbers=0x0107007b;
- /**
+ /**
A collection of apps that have been pre-approved for cross-profile communication.
These will not require admin consent, but will still require user consent during provisioning.
-
+
*/
public static final int vendor_cross_profile_apps=0x0107010f;
- /** A list of apps to be removed from the managed device by a particular vendor.
+ /** A list of apps to be removed from the managed device by a particular vendor.
*/
public static final int vendor_disallowed_apps_managed_device=0x01070110;
- /** A list of apps to be removed from the managed profile by a particular vendor.
+ /** A list of apps to be removed from the managed profile by a particular vendor.
*/
public static final int vendor_disallowed_apps_managed_profile=0x01070111;
- /** A list of apps to be removed from the managed user by a particular vendor.
+ /** A list of apps to be removed from the managed user by a particular vendor.
*/
public static final int vendor_disallowed_apps_managed_user=0x01070112;
- /**
+ /**
A collection of apps that are critical for the device and hence will never be disabled by
device policies or APIs.
-
+
*/
public static final int vendor_policy_exempt_apps=0x01070113;
/** A list of apps to be retained on the managed device by a particular vendor.
- Takes precedence over the disallowed apps lists.
+ Takes precedence over the disallowed apps lists.
*/
public static final int vendor_required_apps_managed_device=0x01070114;
/** A list of apps to be retained in the managed profile by a particular vendor.
- Takes precedence over the disallowed apps lists.
+ Takes precedence over the disallowed apps lists.
*/
public static final int vendor_required_apps_managed_profile=0x01070115;
/** A list of apps to be retained on the managed user by a particular vendor.
- Takes precedence over the disallowed apps lists.
+ Takes precedence over the disallowed apps lists.
*/
public static final int vendor_required_apps_managed_user=0x01070116;
/** The PEM-encoded certificates added here are used for verifying attestations.
@@ -1953,21 +1953,21 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
If not already present in resource overlay, please add
vendor_required_attestation_certificates.xml (matching this file) in vendor overlay
with of the PEM-encoded root certificates.
-
+
*/
public static final int vendor_required_attestation_certificates=0x01070117;
- /** WFC Operator Error Messages showed as alerts
+ /** WFC Operator Error Messages showed as alerts
*/
public static final int wfcOperatorErrorAlertMessages=0x01070104;
- /** WFC Operator Error Messages showed as notifications
+ /** WFC Operator Error Messages showed as notifications
*/
public static final int wfcOperatorErrorNotificationMessages=0x01070105;
- /** Template for showing mobile network operator name while WFC is active
+ /** Template for showing mobile network operator name while WFC is active
*/
public static final int wfcSpnFormats=0x01070106;
/** Certificate digests for trusted apps that will be allowed to obtain the knownSigner Wi-Fi
permissions. The digest should be computed over the DER encoding of the trusted certificate
- using the SHA-256 digest algorithm.
+ using the SHA-256 digest algorithm.
*/
public static final int wifi_known_signers=0x0107000d;
}
@@ -1979,7 +1979,7 @@ TODO(b/343733988): Remove this allowlisting when GMS is ready with the allowlist
public static final int __removed4=0x011600aa;
public static final int __removed5=0x011600ab;
public static final int __removed6=0x011600ac;
- /** Default AbsListView style.
+ /** Default AbsListView style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -1989,7 +1989,7 @@ or to a theme attribute in the form "?[package:][type:]na
{@link android.view.accessibility.AccessibilityEvent}. This setting
can be changed at runtime by calling
{@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
- android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}.
+ android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}.
Must be one or more (separated by '|') of the following constant values.
@@ -2029,7 +2029,7 @@ or to a theme attribute in the form "?[package:][type:]na
{@link android.accessibilityservice.AccessibilityServiceInfo}. This setting
can be changed at runtime by calling
{@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
- android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}.
+ android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}.
Must be one or more (separated by '|') of the following constant values.
@@ -2049,7 +2049,7 @@ or to a theme attribute in the form "?[package:][type:]na
{@link android.accessibilityservice.AccessibilityServiceInfo}.
This setting can be changed at runtime by calling
{@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
- android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}.
+ android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}.
Must be one or more (separated by '|') of the following constant values.
@@ -2077,7 +2077,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int accessibilityFlags=0x01010384;
public static final int accessibilityFocusedDrawable=0x0116003b;
- /** Whether or not this view is a heading for accessibility purposes.
+ /** Whether or not this view is a heading for accessibility purposes.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2087,7 +2087,7 @@ containing a value of this type.
*/
public static final int accessibilityHeading=0x01010580;
/** Indicates to accessibility services whether the user should be notified when
- this view changes.
+ this view changes.
May be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2108,7 +2108,7 @@ containing a value of this type.
*/
public static final int accessibilityLiveRegion=0x010103ee;
/** The title this view should present to accessibility as a pane title.
- See {@link android.view.View#setAccessibilityPaneTitle(CharSequence)}
+ See {@link android.view.View#setAccessibilityPaneTitle(CharSequence)}
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2120,7 +2120,7 @@ containing a value of this type.
/** Sets the id of a view that screen readers are requested to visit before this view.
Requests that a screen-reader visits the content of the other view before the content
of this one. This does nothing if either view is not important for accessibility.
- {@see android.view.View#setAccessibilityTraversalAfter(int)}
+ {@see android.view.View#setAccessibilityTraversalAfter(int)}
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2132,7 +2132,7 @@ containing a value of this type.
/** Sets the id of a view that screen readers are requested to visit after this view.
Requests that a screen-reader visits the content of this view before the content of the
one it precedes. This does nothing if either view is not important for accessibility.
- {@see android.view.View#setAccessibilityTraversalBefore(int)}
+ {@see android.view.View#setAccessibilityTraversalBefore(int)}
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2141,12 +2141,12 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int accessibilityTraversalBefore=0x010104d1;
- /** A preferences.xml file for authenticator-specific settings.
+ /** A preferences.xml file for authenticator-specific settings.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int accountPreferences=0x0101029f;
- /** The account type this authenticator handles.
+ /** The account type this authenticator handles.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2156,7 +2156,7 @@ containing a value of this type.
*/
public static final int accountType=0x0101028f;
/** The action name to assign to the Intent, as per
- {@link android.content.Intent#setAction Intent.setAction()}.
+ {@link android.content.Intent#setAction Intent.setAction()}.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2165,24 +2165,24 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int action=0x0101002d;
- /** Custom divider drawable to use for elements in the action bar.
+ /** Custom divider drawable to use for elements in the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionBarDivider=0x0101039b;
- /** Custom item state list drawable background for action bar items.
+ /** Custom item state list drawable background for action bar items.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionBarItemBackground=0x0101039c;
/** Reference to a theme that should be used to inflate popups
- shown by widgets in the action bar.
+ shown by widgets in the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionBarPopupTheme=0x0101048d;
/** Size of the Action Bar, including the contextual
- bar used to present Action Modes.
+ bar used to present Action Modes.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -2204,34 +2204,34 @@ containing a value of this type.
/** Reference to a style for the split Action Bar. This style
controls the split component that holds the menu/action
buttons. actionBarStyle is still used for the primary
- bar.
+ bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionBarSplitStyle=0x01010388;
- /** Reference to a style for the Action Bar.
+ /** Reference to a style for the Action Bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionBarStyle=0x010102ce;
- /** Reference to a style for the Action Bar Tab Bar.
+ /** Reference to a style for the Action Bar Tab Bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionBarTabBarStyle=0x010102f4;
- /** Default style for tabs within an action bar.
+ /** Default style for tabs within an action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionBarTabStyle=0x010102f3;
- /** Reference to a style for the Action Bar Tab text.
+ /** Reference to a style for the Action Bar Tab text.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionBarTabTextStyle=0x010102f5;
/** Reference to a theme that should be used to inflate the
action bar. This will be inherited by any widget inflated
- into the action bar.
+ into the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -2247,105 +2247,105 @@ or to a theme attribute in the form "?[package:][type:]na
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionBarWidgetTheme=0x01010397;
- /** Default action button style.
+ /** Default action button style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionButtonStyle=0x010102d8;
- /** Default ActionBar dropdown style.
+ /** Default ActionBar dropdown style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionDropDownStyle=0x010102d7;
/** An optional layout to be used as an action view.
See {@link android.view.MenuItem#setActionView(android.view.View)}
- for more info.
+ for more info.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionLayout=0x010102fb;
/** TextAppearance style that will be applied to text that
- appears within action menu items.
+ appears within action menu items.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionMenuTextAppearance=0x01010360;
- /** Color for text that appears within action menu items.
+ /** Color for text that appears within action menu items.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int actionMenuTextColor=0x01010361;
- /** Background drawable to use for action mode UI.
+ /** Background drawable to use for action mode UI.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionModeBackground=0x010102db;
- /** Reference to a style for the Action Mode close button.
+ /** Reference to a style for the Action Mode close button.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionModeCloseButtonStyle=0x010102f7;
- /** Drawable to use for the close action mode button.
+ /** Drawable to use for the close action mode button.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionModeCloseDrawable=0x010102dc;
- /** Drawable to use for the Copy action button in Contextual Action Bar.
+ /** Drawable to use for the Copy action button in Contextual Action Bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionModeCopyDrawable=0x01010312;
- /** Drawable to use for the Cut action button in Contextual Action Bar.
+ /** Drawable to use for the Cut action button in Contextual Action Bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionModeCutDrawable=0x01010311;
- /** Drawable to use for the Find action button in WebView selection action modes.
+ /** Drawable to use for the Find action button in WebView selection action modes.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionModeFindDrawable=0x0101047a;
- /** Drawable to use for the Paste action button in Contextual Action Bar.
+ /** Drawable to use for the Paste action button in Contextual Action Bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionModePasteDrawable=0x01010313;
public static final int actionModePopupWindowStyle=0x01160026;
public static final int actionModeRedoDrawable=0x01160025;
- /** Drawable to use for the Select all action button in Contextual Action Bar.
+ /** Drawable to use for the Select all action button in Contextual Action Bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionModeSelectAllDrawable=0x0101037e;
- /** Drawable to use for the Share action button in WebView selection action modes.
+ /** Drawable to use for the Share action button in WebView selection action modes.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionModeShareDrawable=0x01010479;
- /** Background drawable to use for action mode UI in the lower split bar.
+ /** Background drawable to use for action mode UI in the lower split bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionModeSplitBackground=0x0101039d;
- /** Reference to a style for the Action Mode.
+ /** Reference to a style for the Action Mode.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionModeStyle=0x01010394;
public static final int actionModeUndoDrawable=0x01160024;
- /** Drawable to use for the Web Search action button in WebView selection action modes.
+ /** Drawable to use for the Web Search action button in WebView selection action modes.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionModeWebSearchDrawable=0x0101047b;
- /** Reference to a style for Action Bar overflow buttons.
+ /** Reference to a style for Action Bar overflow buttons.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int actionOverflowButtonStyle=0x010102f6;
- /** Reference to a style for the Action Bar menu.
+ /** Reference to a style for the Action Bar menu.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -2353,7 +2353,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** The name of an optional ActionProvider class to instantiate an action view
and perform operations such as default action for that menu item.
See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
- for more info.
+ for more info.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2364,7 +2364,7 @@ containing a value of this type.
public static final int actionProviderClass=0x01010389;
/** The name of an optional View class to instantiate and use as an
action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
- for more info.
+ for more info.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2373,32 +2373,32 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int actionViewClass=0x010102fc;
- /** Drawable used as a background for activated items.
+ /** Drawable used as a background for activated items.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int activatedBackgroundIndicator=0x010102fd;
public static final int activityChooserViewStyle=0x01160023;
/** When closing the current activity, this is the animation that is
- run on the next activity (which is entering the screen).
+ run on the next activity (which is entering the screen).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int activityCloseEnterAnimation=0x010100ba;
/** When closing the current activity, this is the animation that is
- run on the current activity (which is exiting the screen).
+ run on the current activity (which is exiting the screen).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int activityCloseExitAnimation=0x010100bb;
/** When opening a new activity, this is the animation that is
- run on the next activity (which is entering the screen).
+ run on the next activity (which is entering the screen).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int activityOpenEnterAnimation=0x010100b8;
/** When opening a new activity, this is the animation that is
- run on the previous activity (which is exiting the screen).
+ run on the previous activity (which is exiting the screen).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -2406,7 +2406,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int activityOpenRemoteViewsEnterAnimation=0x011600a8;
public static final int adServiceTypes=0x0116016a;
/** Fully qualified class name of an activity that allows the user to manually
- add printers to this print service.
+ add printers to this print service.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2418,7 +2418,7 @@ containing a value of this type.
/** Sets whether this ViewGroup's drawable states also include
its children's drawable states. This is used, for example, to
make a group appear to be focused when its child EditText or button
- is focused.
+ is focused.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2428,7 +2428,7 @@ containing a value of this type.
*/
public static final int addStatesFromChildren=0x010100f0;
/** Set this to true if you want the ImageView to adjust its bounds
- to preserve the aspect ratio of its drawable.
+ to preserve the aspect ratio of its drawable.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2439,7 +2439,7 @@ containing a value of this type.
public static final int adjustViewBounds=0x0101011e;
public static final int adjustable=0x01160154;
/** Fully qualified class name of an activity with advanced print options
- specific to this print service.
+ specific to this print service.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2450,7 +2450,7 @@ containing a value of this type.
public static final int advancedPrintOptionsActivity=0x010103f1;
public static final int alertDialogButtonGroupStyle=0x0116001a;
public static final int alertDialogCenterButtons=0x0116001b;
- /** Icon drawable to use for alerts.
+ /** Icon drawable to use for alerts.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -2459,12 +2459,12 @@ or to a theme attribute in the form "?[package:][type:]na
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int alertDialogStyle=0x0101005d;
- /** Theme to use for alert dialogs spawned from this theme.
+ /** Theme to use for alert dialogs spawned from this theme.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int alertDialogTheme=0x01010309;
- /** Alignment constants.
+ /** Alignment constants.
Must be one of the following constant values.
@@ -2479,7 +2479,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int alignmentMode=0x0101037a;
/** Resource representing the term "All Contacts" (for example, "All Friends" or
- "All connections"). Optional (Default is "All Contacts").
+ "All connections"). Optional (Default is "All Contacts").
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2510,7 +2510,7 @@ containing a value of this type.
See {@link android.media.AudioPlaybackCaptureConfiguration} for more detail.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2524,7 +2524,7 @@ containing a value of this type.
and restore infrastructure. If this attribute is set to false
,
no backup or restore of the application will ever be performed, even by a
full-system backup that would otherwise cause all application data to be saved
- via adb. The default value of this attribute is true
.
+ via adb. The default value of this attribute is true
.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2539,7 +2539,7 @@ containing a value of this type.
clear app data from Settings. To control clearing the data after a
failed restore use allowClearUserDataOnFailedRestore flag.
This attribute is usable only by applications
- included in the system image. Third-party apps cannot use it.
+ included in the system image. Third-party apps cannot use it.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2548,10 +2548,10 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int allowClearUserData=0x01010005;
- /** @hide
+ /** @hide
If {@code true} the system will clear app's data if a restore operation fails.
This flag is turned on by default. This attribute is usable only by system apps.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2561,7 +2561,7 @@ containing a value of this type.
*/
@android.annotation.SystemApi
public static final int allowClearUserDataOnFailedRestore=0x01010600;
- /** Whether or not allow clicks on disabled view.
+ /** Whether or not allow clicks on disabled view.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2575,7 +2575,7 @@ containing a value of this type.
activity. Particularly in the case where the child lives in a container
such as a Display owned by another activity.
-
The default value of this attribute is false
.
+
The default value of this attribute is false
.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2594,7 +2594,7 @@ containing a value of this type.
Tagged Pointers
document for more information on this feature.
- The default value is {@code true}.
+ The default value is {@code true}.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2608,7 +2608,7 @@ containing a value of this type.
Otherwise the SyncManager will be sure not to issue a start sync request
to this SyncAdapter if the SyncAdapter is already syncing another account.
Defaults to false.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2620,7 +2620,7 @@ containing a value of this type.
public static final int allowSharedIsolatedProcess=0x011601a4;
/** Indicates whether the drawer can be opened/closed by a single tap
on the handle. (If false, the user must drag or fling, or click
- using the trackball, to open/close the drawer.) Default is true.
+ using the trackball, to open/close the drawer.) Default is true.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2643,7 +2643,7 @@ containing a value of this type.
in goes to the background. Typically this is used to cause the
activities of an application to move back to the main task associated
with that application. The activity is re-parented to the task
- with the same {@link android.R.attr#taskAffinity} as it has.
+ with the same {@link android.R.attr#taskAffinity} as it has.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2652,7 +2652,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int allowTaskReparenting=0x01010204;
- /** Whether undo should be allowed for editable text. Defaults to true.
+ /** Whether undo should be allowed for editable text. Defaults to true.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2664,7 +2664,7 @@ containing a value of this type.
public static final int allowUntrustedActivityEmbedding=0x01160192;
public static final int allowUpdateOwnership=0x01160198;
/** alpha property of the view, as a value between 0 (completely transparent) and 1
- (completely opaque).
+ (completely opaque).
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2674,7 +2674,7 @@ containing a value of this type.
*/
public static final int alpha=0x0101031f;
/** The alphabetic modifier key. This is the modifier when using a keyboard
- with alphabetic keys. The values should be kept in sync with KeyEvent
+ with alphabetic keys. The values should be kept in sync with KeyEvent
Must be one or more (separated by '|') of the following constant values.
@@ -2691,7 +2691,7 @@ containing a value of this type.
*/
public static final int alphabeticModifiers=0x0101054e;
/** The alphabetic shortcut key. This is the shortcut when using a keyboard
- with alphabetic keys.
+ with alphabetic keys.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2703,7 +2703,7 @@ containing a value of this type.
/** Defines whether the ViewGroup should always draw its children using their
drawing cache or not. The default value is true.
Deprecated: The view drawing cache was largely made obsolete with the introduction of
- hardware-accelerated rendering in API 11.
+ hardware-accelerated rendering in API 11.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2727,7 +2727,7 @@ containing a value of this type.
task in its last state, regardless of how they get there. This is
useful, for example, in an application like the web browser where there
is a lot of state (such as multiple open tabs) that the application
- would not like to lose.
+ would not like to lose.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2760,7 +2760,7 @@ containing a value of this type.
*/
@Deprecated
public static final int amPmTextColor=0x010104a4;
- /** Alpha value of the ambient shadow projected by elevated views, between 0 and 1.
+ /** Alpha value of the ambient shadow projected by elevated views, between 0 and 1.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2770,7 +2770,7 @@ containing a value of this type.
*/
public static final int ambientShadowAlpha=0x010104be;
/** Angle of the gradient, used only with linear gradient. Must be a multiple of 45 in the
- range [0, 315].
+ range [0, 315].
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2780,7 +2780,7 @@ containing a value of this type.
*/
public static final int angle=0x010101a0;
/** Defines whether to animate the current View when the ViewAnimation
- is first displayed.
+ is first displayed.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2802,7 +2802,7 @@ containing a value of this type.
*/
public static final int animateLayoutChanges=0x010102f2;
/** Indicates whether the drawer should be opened/closed with an animation
- when the user clicks the handle. Default is true.
+ when the user clicks the handle. Default is true.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2812,14 +2812,14 @@ containing a value of this type.
*/
public static final int animateOnClick=0x0101025c;
/** Animated image of the accessibility service purpose or behavior, to help users
- understand how the service can help them.
+ understand how the service can help them.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int animatedImageDrawable=0x0101060a;
- /** Animation to use on each child.
+ /** Animation to use on each child.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -2827,7 +2827,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** Defines whether layout animations should create a drawing cache for their
children. Enabling the animation cache consumes more memory and requires
a longer initialization but provides better performance. The animation
- cache is enabled by default.
+ cache is enabled by default.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2837,7 +2837,7 @@ containing a value of this type.
*/
public static final int animationCache=0x010100ed;
/** Sets how long a transition animation should run (in milliseconds)
- when layout has changed. Only relevant if animation is turned on.
+ when layout has changed. Only relevant if animation is turned on.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2846,7 +2846,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int animationDuration=0x01010112;
- /** The order in which the animations will be started.
+ /** The order in which the animations will be started.
Must be one of the following constant values.
@@ -2859,9 +2859,9 @@ containing a value of this type.
*/
public static final int animationOrder=0x010101ce;
- /** @deprecated Not used by the framework.
+ /** @deprecated Not used by the framework.
Timeout between frames of animation in milliseconds.
- {@deprecated Not used by the framework}.
+ {@deprecated Not used by the framework}.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2872,7 +2872,7 @@ containing a value of this type.
@Deprecated
public static final int animationResolution=0x0101031a;
/** Enables or disables antialiasing. Antialiasing can be used to smooth the
- edges of a bitmap when rotated. Default value is false.
+ edges of a bitmap when rotated. Default value is false.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2884,7 +2884,7 @@ containing a value of this type.
/** Indicates whether the application can accommodate any screen
density. This is assumed true if targetSdkVersion is 4 or higher.
@deprecated Should always be true by default and not overridden.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2895,12 +2895,12 @@ containing a value of this type.
@Deprecated
public static final int anyDensity=0x0101026c;
/** A drawable that can be rendered in Android's system UI for representing
- the service.
+ the service.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int apduServiceBanner=0x010103ed;
- /** Value is a string that specifies the Maps API Key to use.
+ /** Value is a string that specifies the Maps API Key to use.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2912,7 +2912,7 @@ containing a value of this type.
/** Declare the category of this app. Categories are used to cluster multiple apps
together into meaningful groups, such as when summarizing battery, network, or
disk usage. Apps should only define this value when they fit well into one of
- the specific categories.
+ the specific categories.
Must be one of the following constant values.
@@ -2948,7 +2948,7 @@ containing a value of this type.
/** Attribution tag to be used for permission sub-attribution if a
permission is checked in {@link android.content.Context#sendBroadcast(Intent, String)}.
Multiple tags can be specified separated by '|'.
-
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2957,7 +2957,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int attributionTags=0x01010642;
- /** Whether attributions provided are meant to be user-visible.
+ /** Whether attributions provided are meant to be user-visible.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2973,7 +2973,7 @@ containing a value of this type.
*/
public static final int attributionsAreUserVisible=0x0101064b;
/** Name of the author and/or source/collection of this component, for example,
- Art Collection, Picasso.
+ Art Collection, Picasso.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -2983,7 +2983,7 @@ or to a theme attribute in the form "?[package:][type:]na
with a semicolon. Authority names should use a Java-style naming
convention (such as com.google.provider.MyProvider
)
in order to avoid conflicts. Typically this name is the same
- as the class implementation describing the provider's data structure.
+ as the class implementation describing the provider's data structure.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -2993,12 +2993,12 @@ containing a value of this type.
*/
public static final int authorities=0x01010018;
/** The view id of the AppWidget subview which should be auto-advanced.
- by the widget's host.
+ by the widget's host.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int autoAdvanceViewId=0x0101030f;
- /** Default AutoCompleteTextView style.
+ /** Default AutoCompleteTextView style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -3006,7 +3006,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int autoHandwritingEnabled=0x011600b4;
/** Controls whether links such as urls and email addresses are
automatically found and converted to clickable links. The default
- value is "none", disabling this feature.
+ value is "none", disabling this feature.
Must be one or more (separated by '|') of the following constant values.
@@ -3025,7 +3025,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int autoLink=0x010100b0;
/** Indicates if the drawable needs to be mirrored when its layout direction is
RTL (right-to-left). See
- {@link android.graphics.drawable.Drawable#setAutoMirrored}.
+ {@link android.graphics.drawable.Drawable#setAutoMirrored}.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3038,7 +3038,7 @@ containing a value of this type.
list until the last activity in the task is completed. When that happens the task
will be automatically removed from the recent tasks list. This overrides the caller's
use of {@link android.content.Intent#FLAG_ACTIVITY_RETAIN_IN_RECENTS
- Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS}
+ Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS}
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3047,7 +3047,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int autoRemoveFromRecents=0x01010447;
- /** No longer used. Declaring this does nothing
+ /** No longer used. Declaring this does nothing
Must be one of the following constant values.
@@ -3060,7 +3060,7 @@ containing a value of this type.
*/
public static final int autoRevokePermissions=0x01010613;
- /** The maximum text size constraint to be used when auto-sizing text.
+ /** The maximum text size constraint to be used when auto-sizing text.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -3071,7 +3071,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int autoSizeMaxTextSize=0x01010546;
- /** The minimum text size constraint to be used when auto-sizing text.
+ /** The minimum text size constraint to be used when auto-sizing text.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -3100,7 +3100,7 @@ some parent container.
public static final int autoSizePresetSizes=0x01010537;
/** Specify the auto-size step size if autoSizeTextType
is set to
uniform
. The default is 1px. Overwrites
- autoSizePresetSizes
if set.
+ autoSizePresetSizes
if set.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -3112,7 +3112,7 @@ containing a value of this type.
*/
public static final int autoSizeStepGranularity=0x01010536;
/** Specify the type of auto-size. Note that this feature is not supported by EditText,
- works only for TextView.
+ works only for TextView.
Must be one of the following constant values.
@@ -3125,7 +3125,7 @@ containing a value of this type.
*/
public static final int autoSizeTextType=0x01010535;
- /** When true, automatically start animating.
+ /** When true, automatically start animating.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3137,7 +3137,7 @@ containing a value of this type.
/** If set, specifies that this TextView has a textual input method
and automatically corrects some common spelling errors.
The default is "false".
- {@deprecated Use inputType instead.}
+ {@deprecated Use inputType instead.}
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3153,7 +3153,7 @@ containing a value of this type.
keyboard and invoke the browser directly when user launches the URL instead of passing
the URL to the activity). If set to false
any URLs entered are treated as
normal query text.
- The default value is false
. Optional attribute..
+ The default value is false
. Optional attribute..
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3171,7 +3171,7 @@ containing a value of this type.
For each URI, an HTTPS network request will be done to /.well-known/statements.json
host to verify that the web site is okay with the app intercepting the URI.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3184,7 +3184,7 @@ containing a value of this type.
public static final int autofillDatasetPickerMaxWidth=0x01160000;
/** Describes the content of a view so that a autofill service can fill in the appropriate
data. Multiple hints can be combined in a comma separated list or an array of strings
- to mean e.g. emailAddress or postalAddress.
+ to mean e.g. emailAddress or postalAddress.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
@@ -3200,14 +3200,14 @@ or to a theme attribute in the form "?[package:][type:]na
/** A drawable to use as the background. This can be either a reference
to a full drawable resource (such as a PNG image, 9-patch,
XML state list description, etc), or a solid color such as "#ff000000"
- (black).
+ (black).
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int background=0x010100d4;
- /** Default background dim amount when a menu, dialog, or something similar pops up.
+ /** Default background dim amount when a menu, dialog, or something similar pops up.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3218,7 +3218,7 @@ containing a value of this type.
public static final int backgroundDimAmount=0x01010032;
/** Control whether dimming behind the window is enabled. The default
theme does not set this value, meaning it is based on whether the
- window is floating.
+ window is floating.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3232,21 +3232,21 @@ containing a value of this type.
public static final int backgroundRequest=0x011601a1;
public static final int backgroundRequestDetail=0x011601a2;
public static final int backgroundRight=0x011600cf;
- /** Specifies a background drawable for the bottom component of a split action bar.
+ /** Specifies a background drawable for the bottom component of a split action bar.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int backgroundSplit=0x0101038b;
- /** Specifies a background drawable for a second stacked row of the action bar.
+ /** Specifies a background drawable for a second stacked row of the action bar.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int backgroundStacked=0x0101038a;
- /** Tint to apply to the background.
+ /** Tint to apply to the background.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -3256,7 +3256,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int backgroundTint=0x0101046b;
- /** Blending mode used to apply the background tint.
+ /** Blending mode used to apply the background tint.
Must be one of the following constant values.
@@ -3278,7 +3278,7 @@ containing a value of this type.
*/
public static final int backgroundTintMode=0x0101046c;
/** The name of the class subclassing BackupAgent
to manage
- backup and restore of the application's data on external storage.
+ backup and restore of the application's data on external storage.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3295,7 +3295,7 @@ containing a value of this type.
If unspecified, the default value of this attribute is false
,
which means that the OS will avoid backing up the application while it is
running in the foreground (such as a music app that is actively playing
- music via a service in the startForeground() state).
+ music via a service in the startForeground() state).
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3316,13 +3316,13 @@ containing a value of this type.
mode. These are activities that handle Intents of category
{@link android.content.Intent#CATEGORY_LEANBACK_LAUNCHER
Intent.CATEGORY_LEANBACK_LAUNCHER}.
-
This must be a reference to a Drawable resource containing the image definition.
+
This must be a reference to a Drawable resource containing the image definition.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int banner=0x010103f2;
/** The offset of the baseline within this view. See {see android.view.View#getBaseline}
- for details
+ for details
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -3334,7 +3334,7 @@ containing a value of this type.
*/
public static final int baseline=0x0101031c;
/** If true, the image view will be baseline aligned with based on its
- bottom edge.
+ bottom edge.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3345,7 +3345,7 @@ containing a value of this type.
public static final int baselineAlignBottom=0x01010122;
/** When set to false, prevents the layout from aligning its children's
baselines. This attribute is particularly useful when the children
- use different values for gravity. The default value is true.
+ use different values for gravity. The default value is true.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3365,7 +3365,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int baselineAlignedChildIndex=0x01010127;
- /** Drawable to use as the icon bitmap.
+ /** Drawable to use as the icon bitmap.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -3374,12 +3374,12 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int borderLeft=0x011600d5;
public static final int borderRight=0x011600d6;
public static final int borderTop=0x011600d3;
- /** Style for buttons without an explicit border, often used in groups.
+ /** Style for buttons without an explicit border, often used in groups.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int borderlessButtonStyle=0x0101032b;
- /** Amount of bottom padding inside the gradient shape.
+ /** Amount of bottom padding inside the gradient shape.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -3402,7 +3402,7 @@ or to a theme attribute in the form "?[package:][type:]na
"#rrggbb
", or "#aarrggbb
".
*/
public static final int bottomDark=0x010100c9;
- /** Radius of the bottom left corner.
+ /** Radius of the bottom left corner.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -3419,7 +3419,7 @@ or to a theme attribute in the form "?[package:][type:]na
"#rrggbb
", or "#aarrggbb
".
*/
public static final int bottomMedium=0x010100ce;
- /** Extra offset for the handle at the bottom of the SlidingDrawer.
+ /** Extra offset for the handle at the bottom of the SlidingDrawer.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -3430,7 +3430,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int bottomOffset=0x01010257;
- /** Radius of the bottom right corner.
+ /** Radius of the bottom right corner.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -3441,7 +3441,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int bottomRightRadius=0x010101ac;
- /** The short title for the bread crumb of this item.
+ /** The short title for the bread crumb of this item.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3450,7 +3450,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int breadCrumbShortTitle=0x01010304;
- /** The title for the bread crumb of this item.
+ /** The title for the bread crumb of this item.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3459,7 +3459,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int breadCrumbTitle=0x01010303;
- /** Break strategy (control over paragraph layout).
+ /** Break strategy (control over paragraph layout).
Must be one of the following constant values.
@@ -3475,7 +3475,7 @@ containing a value of this type.
/** Determines the minimum type that getText() will return.
The default is "normal".
Note that EditText and LogTextBox always return Editable,
- even if you specify something less powerful here.
+ even if you specify something less powerful here.
Must be one of the following constant values.
@@ -3489,37 +3489,37 @@ containing a value of this type.
*/
public static final int bufferType=0x0101014e;
- /** Drawable used for the button graphic (for example, checkbox and radio button).
+ /** Drawable used for the button graphic (for example, checkbox and radio button).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int button=0x01010107;
- /** Style for buttons within button bars.
+ /** Style for buttons within button bars.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int buttonBarButtonStyle=0x0101032f;
- /** Style for the "negative" buttons within button bars.
+ /** Style for the "negative" buttons within button bars.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int buttonBarNegativeButtonStyle=0x0101048b;
- /** Style for the "neutral" buttons within button bars.
+ /** Style for the "neutral" buttons within button bars.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int buttonBarNeutralButtonStyle=0x0101048a;
- /** Style for the "positive" buttons within button bars.
+ /** Style for the "positive" buttons within button bars.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int buttonBarPositiveButtonStyle=0x01010489;
- /** Style for button bars.
+ /** Style for button bars.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int buttonBarStyle=0x0101032e;
- /** Corner radius of buttons.
+ /** Corner radius of buttons.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -3542,27 +3542,27 @@ containing a value of this type.
*/
public static final int buttonGravity=0x010104fe;
public static final int buttonPanelSideLayout=0x01160099;
- /** Normal Button style.
+ /** Normal Button style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int buttonStyle=0x01010048;
- /** Button style to inset into an EditText.
+ /** Button style to inset into an EditText.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int buttonStyleInset=0x0101004a;
- /** Small Button style.
+ /** Small Button style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int buttonStyleSmall=0x01010049;
- /** ToggleButton style.
+ /** ToggleButton style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int buttonStyleToggle=0x0101004b;
- /** Tint to apply to the button graphic.
+ /** Tint to apply to the button graphic.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -3572,7 +3572,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int buttonTint=0x0101046f;
- /** Blending mode used to apply the button graphic tint.
+ /** Blending mode used to apply the button graphic tint.
Must be one of the following constant values.
@@ -3594,7 +3594,7 @@ containing a value of this type.
*/
public static final int buttonTintMode=0x01010470;
/** Indicates that this list will always be drawn on top of solid, single-color
- opaque background. This allows the list to optimize drawing.
+ opaque background. This allows the list to optimize drawing.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -3604,7 +3604,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int cacheColorHint=0x01010101;
- /** The text color list of the calendar.
+ /** The text color list of the calendar.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -3615,7 +3615,7 @@ containing a value of this type.
*/
public static final int calendarTextColor=0x0101049b;
public static final int calendarViewMode=0x011600f3;
- /** Whether the calendar view is shown. Only valid for "spinner" mode.
+ /** Whether the calendar view is shown. Only valid for "spinner" mode.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3624,14 +3624,14 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int calendarViewShown=0x0101034c;
- /** The CalendarView style.
+ /** The CalendarView style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int calendarViewStyle=0x0101035d;
/** Attribute whether the accessibility service wants to be able to control
display magnification.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3644,7 +3644,7 @@ containing a value of this type.
/** Attribute whether the TV input service can pause recording programs.
This value can be changed at runtime by calling
{@link android.media.tv.TvInputManager#updateTvInputInfo(android.media.tv.TvInputInfo)}
- .
+ .
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3653,7 +3653,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int canPauseRecording=0x0101061a;
- /** Attribute whether the accessibility service wants to be able to perform gestures.
+ /** Attribute whether the accessibility service wants to be able to perform gestures.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3664,7 +3664,7 @@ containing a value of this type.
public static final int canPerformGestures=0x0101050d;
/** Attribute whether the TV input service can record programs. This value can be changed
at runtime by calling
- {@link android.media.tv.TvInputManager#updateTvInputInfo(android.media.tv.TvInputInfo)}.
+ {@link android.media.tv.TvInputManager#updateTvInputInfo(android.media.tv.TvInputInfo)}.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3676,7 +3676,7 @@ containing a value of this type.
/** Attribute whether the accessibility service wants to be able to request enhanced
web accessibility enhancements.
{@deprecated Not used by the framework}
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3692,7 +3692,7 @@ containing a value of this type.
Required to allow setting the {@link android.accessibilityservice
#AccessibilityServiceInfo#FLAG_REQUEST_FILTER_KEY_EVENTS} flag.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3707,7 +3707,7 @@ containing a value of this type.
Required to allow setting the {@link android.accessibilityservice
#AccessibilityServiceInfo#FLAG_REQUEST_FINGERPRINT_GESTURES} flag to have any effect.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3723,7 +3723,7 @@ containing a value of this type.
Required to allow setting the {@link android.accessibilityservice
#AccessibilityServiceInfo#FLAG_REQUEST_TOUCH_EXPLORATION_MODE} flag.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3738,7 +3738,7 @@ containing a value of this type.
Required to allow setting the {@link android.accessibilityservice
#AccessibilityServiceInfo#FLAG_RETRIEVE_INTERACTIVE_WINDOWS} flag.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3747,7 +3747,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int canRetrieveWindowContent=0x01010385;
- /** Attribute whether the accessibility service wants to be able to take screenshot.
+ /** Attribute whether the accessibility service wants to be able to take screenshot.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3759,7 +3759,7 @@ containing a value of this type.
/** A styled string, specifying the style to be used for showing
inline candidate text when composing with an input method. The
text itself will be ignored, but the style spans will be applied
- to the candidate text as it is edited.
+ to the candidate text as it is edited.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
@@ -3773,7 +3773,7 @@ or to a theme attribute in the form "?[package:][type:]na
quit it. Only one such app can be running at a time; if the user
tries to launch a second such app, they will be prompted
to quit the first before doing so. While the
- application is running, the user will be informed of this.
+ application is running, the user will be informed of this.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3786,7 +3786,7 @@ containing a value of this type.
/** If set, specifies that this TextView has a textual input method
and should automatically capitalize what the user types.
The default is "none".
- {@deprecated Use inputType instead.}
+ {@deprecated Use inputType instead.}
Must be one of the following constant values.
@@ -3828,7 +3828,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int centerBright=0x010100cc;
/** Optional center color. For linear gradients, use centerX or centerY to place the center
- color.
+ color.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -3851,7 +3851,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int centerMedium=0x010100cf;
/** X-position of the center point of the gradient within the shape as a fraction of the
- width. The default value is 0.5.
+ width. The default value is 0.5.
May be a floating point value, such as "1.2
".
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
@@ -3864,7 +3864,7 @@ containing a value of this type.
*/
public static final int centerX=0x010101a2;
/** Y-position of the center point of the gradient within the shape as a fraction of the
- height. The default value is 0.5.
+ height. The default value is 0.5.
May be a floating point value, such as "1.2
".
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
@@ -3876,7 +3876,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int centerY=0x010101a3;
- /** The SHA-256 digest of the SDK library signing certificate.
+ /** The SHA-256 digest of the SDK library signing certificate.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3897,18 +3897,18 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int certDigest=0x01010548;
- /** Default style for CheckBoxPreference.
+ /** Default style for CheckBoxPreference.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int checkBoxPreferenceStyle=0x0101008f;
- /** Drawable used for the check mark graphic.
+ /** Drawable used for the check mark graphic.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int checkMark=0x01010108;
public static final int checkMarkGravity=0x011600c9;
- /** Tint to apply to the check mark.
+ /** Tint to apply to the check mark.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -3918,7 +3918,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int checkMarkTint=0x010104a7;
- /** Blending mode used to apply the check mark tint.
+ /** Blending mode used to apply the check mark tint.
Must be one of the following constant values.
@@ -3939,7 +3939,7 @@ containing a value of this type.
*/
public static final int checkMarkTintMode=0x010104a8;
- /** Whether the item is capable of displaying a check mark.
+ /** Whether the item is capable of displaying a check mark.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3948,7 +3948,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int checkable=0x010101e5;
- /** Whether the items are capable of displaying a check mark.
+ /** Whether the items are capable of displaying a check mark.
Must be one of the following constant values.
@@ -3962,12 +3962,12 @@ containing a value of this type.
*/
public static final int checkableBehavior=0x010101e0;
- /** Default Checkbox style.
+ /** Default Checkbox style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int checkboxStyle=0x0101006c;
- /** Indicates the initial checked state of this button.
+ /** Indicates the initial checked state of this button.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3977,7 +3977,7 @@ containing a value of this type.
*/
public static final int checked=0x01010106;
/** The id of the child radio button that should be checked by default
- within this radio group.
+ within this radio group.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -3986,26 +3986,26 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int checkedButton=0x01010148;
- /** Default CheckedTextView style.
+ /** Default CheckedTextView style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int checkedTextViewStyle=0x010103c8;
/** Drawable or color that is used as a divider for children. (It will drawn
below and above child items.) The height of this will be the same as
- the height of the normal list item divider.
+ the height of the normal list item divider.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int childDivider=0x01010111;
- /** Indicator shown beside the child View. This can be a stateful Drawable.
+ /** Indicator shown beside the child View. This can be a stateful Drawable.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int childIndicator=0x0101010c;
- /** The end bound for a child's indicator.
+ /** The end bound for a child's indicator.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -4016,7 +4016,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int childIndicatorEnd=0x010103d4;
- /** The left bound for a child's indicator.
+ /** The left bound for a child's indicator.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -4027,7 +4027,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int childIndicatorLeft=0x0101010f;
- /** The right bound for a child's indicator.
+ /** The right bound for a child's indicator.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -4038,7 +4038,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int childIndicatorRight=0x01010110;
- /** The start bound for a child's indicator.
+ /** The start bound for a child's indicator.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -4058,7 +4058,7 @@ containing a value of this type.
The application will supply a
{@link android.widget.AbsListView.MultiChoiceModeListener} using
{@link android.widget.AbsListView#setMultiChoiceModeListener} to control the
- selection mode. This uses the {@link android.view.ActionMode} API.
+ selection mode. This uses the {@link android.view.ActionMode} API.
Must be one of the following constant values.
@@ -4085,7 +4085,7 @@ containing a value of this type.
If an unknown classloader is provided, a PackageManagerException with cause
PackageManager.INSTALL_PARSE_FAILED_MANIFEST_MALFORMED
will be
thrown and the app will not be installed.
-
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4115,7 +4115,7 @@ containing a value of this type.
clear. That is, all activities above the root activity of the
task will be removed: those that have an affinity will be moved
to the task they are associated with, otherwise they will simply
- be dropped as described here.
+ be dropped as described here.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4125,7 +4125,7 @@ containing a value of this type.
*/
public static final int clearTaskOnLaunch=0x01010015;
public static final int clickColor=0x011600dc;
- /** Defines whether this view reacts to click events.
+ /** Defines whether this view reacts to click events.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4138,7 +4138,7 @@ containing a value of this type.
This is useful with animations that scale the size of the children to more
than 100% for instance. In such a case, this property should be set to false
to allow the children to draw outside of their bounds. The default value of
- this property is true.
+ this property is true.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4147,7 +4147,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int clipChildren=0x010100ea;
- /** The orientation for the clip.
+ /** The orientation for the clip.
Must be one or more (separated by '|') of the following constant values.
@@ -4166,7 +4166,7 @@ containing a value of this type.
float)} circular reveal animation take priority over Outline clipping, and child
Outline clipping takes priority over Outline clipping done by a parent.
Note that this flag will only be respected if the View's Outline returns true from
- {@link android.graphics.Outline#canClip()}.
+ {@link android.graphics.Outline#canClip()}.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4177,7 +4177,7 @@ containing a value of this type.
public static final int clipToOutline=0x01010628;
/** Defines whether the ViewGroup will clip its children and resize (but not clip) any
EdgeEffect to its padding, if padding is not zero. This property is set to true by
- default.
+ default.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4186,14 +4186,14 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int clipToPadding=0x010100eb;
- /** Close button icon.
+ /** Close button icon.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int closeIcon=0x01010481;
public static final int closeItemLayout=0x0116012f;
/** The unicode value or comma-separated values that this key outputs.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
May be an integer value, such as "100
".
This may also be a reference to a resource (in the form
@@ -4206,7 +4206,7 @@ containing a value of this type.
public static final int codes=0x01010242;
/** The zero-based index of the columns to collapse. The column indices
must be separated by a comma: 1, 2, 5. Illegal and duplicate
- indices are ignored.
+ indices are ignored.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4215,7 +4215,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int collapseColumns=0x0101014b;
- /** Text to set as the content description for the collapse button.
+ /** Text to set as the content description for the collapse button.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4224,12 +4224,12 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int collapseContentDescription=0x010104d0;
- /** Icon drawable to use for the collapse button.
+ /** Icon drawable to use for the collapse button.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int collapseIcon=0x010104ff;
- /** Solid color for the gradient shape.
+ /** Solid color for the gradient shape.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4240,7 +4240,7 @@ containing a value of this type.
*/
public static final int color=0x010101a5;
/** Bright complement to the primary branding color. By default, this is the color applied
- to framework controls (via colorControlActivated).
+ to framework controls (via colorControlActivated).
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4257,7 +4257,7 @@ containing a value of this type.
public static final int colorAccentTertiary=0x01160040;
public static final int colorAccentTertiaryVariant=0x01160044;
/** Default highlight color for items that are
- activated. (Activated meaning persistent selection.)
+ activated. (Activated meaning persistent selection.)
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4267,7 +4267,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int colorActivatedHighlight=0x01010390;
- /** Default color of background imagery, ex. full-screen windows.
+ /** Default color of background imagery, ex. full-screen windows.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4282,7 +4282,7 @@ containing a value of this type.
there is a solid background color; it should be null when the
background is a texture or translucent. When a device is able
to use accelerated drawing (thus setting state_accelerated), the
- cache hint is ignored and always assumed to be transparent.
+ cache hint is ignored and always assumed to be transparent.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4292,7 +4292,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int colorBackgroundCacheHint=0x010102ab;
- /** Default color of background imagery for floating components, ex. dialogs, popups, and cards.
+ /** Default color of background imagery for floating components, ex. dialogs, popups, and cards.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4302,7 +4302,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int colorBackgroundFloating=0x010104e2;
- /** The color applied to framework buttons in their normal state.
+ /** The color applied to framework buttons in their normal state.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4312,7 +4312,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int colorButtonNormal=0x0101042b;
- /** The color applied to framework controls in their activated (ex. checked) state.
+ /** The color applied to framework controls in their activated (ex. checked) state.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4322,7 +4322,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int colorControlActivated=0x0101042a;
- /** The color applied to framework control highlights (ex. ripples, list selectors).
+ /** The color applied to framework control highlights (ex. ripples, list selectors).
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4332,7 +4332,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int colorControlHighlight=0x0101042c;
- /** The color applied to framework controls in their normal state.
+ /** The color applied to framework controls in their normal state.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4342,7 +4342,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int colorControlNormal=0x01010429;
- /** The color applied to the edge effect on scrolling containers.
+ /** The color applied to the edge effect on scrolling containers.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4353,7 +4353,7 @@ containing a value of this type.
*/
public static final int colorEdgeEffect=0x010104ce;
/** Color used for error states and things that need to be drawn to
- the users attention..
+ the users attention..
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -4361,7 +4361,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int colorError=0x01010543;
/** Default highlight color for items that are
- focused. (Focused meaning cursor-based selection.)
+ focused. (Focused meaning cursor-based selection.)
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4371,7 +4371,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int colorFocusedHighlight=0x0101038f;
- /** Default color of foreground imagery.
+ /** Default color of foreground imagery.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4381,7 +4381,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int colorForeground=0x01010030;
- /** Default color of foreground imagery on an inverted background.
+ /** Default color of foreground imagery on an inverted background.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4392,7 +4392,7 @@ containing a value of this type.
*/
public static final int colorForegroundInverse=0x01010206;
public static final int colorListDivider=0x01160004;
- /** Default highlight color for items that are long-pressed.
+ /** Default highlight color for items that are long-pressed.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4403,14 +4403,14 @@ containing a value of this type.
*/
public static final int colorLongPressedHighlight=0x0101038e;
/** Specify the color mode the activity desires. The requested color mode may be ignored
- depending on the capabilities of the display the activity is displayed on.
+ depending on the capabilities of the display the activity is displayed on.
Must be one of the following constant values.
Constant | Value | Description |
-wideColorGamut | 1 | The default color mode (typically sRGB, low-dynamic range).
+ |
wideColorGamut | 1 | The default color mode (typically sRGB, low-dynamic range).
Wide color gamut color mode. |
hdr | 2 | High dynamic range color mode. |
@@ -4418,7 +4418,7 @@ containing a value of this type.
*/
public static final int colorMode=0x0101054a;
/** Default highlight color for items in multiple selection
- mode.
+ mode.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4429,7 +4429,7 @@ containing a value of this type.
*/
public static final int colorMultiSelectHighlight=0x01010391;
public static final int colorPopupBackground=0x01160003;
- /** Default highlight color for items that are pressed.
+ /** Default highlight color for items that are pressed.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4440,7 +4440,7 @@ containing a value of this type.
*/
public static final int colorPressedHighlight=0x0101038d;
/** The primary branding color for the app. By default, this is the color applied to the
- action bar background.
+ action bar background.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4451,7 +4451,7 @@ containing a value of this type.
*/
public static final int colorPrimary=0x01010433;
/** Dark variant of the primary branding color. By default, this is the color applied to
- the status bar (via statusBarColor) and navigation bar (via navigationBarColor).
+ the status bar (via statusBarColor) and navigation bar (via navigationBarColor).
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4462,7 +4462,7 @@ containing a value of this type.
*/
public static final int colorPrimaryDark=0x01010434;
public static final int colorProgressBackgroundNormal=0x01160046;
- /** The secondary branding color for the app.
+ /** The secondary branding color for the app.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -4477,7 +4477,7 @@ containing a value of this type.
public static final int colorSurfaceHighlight=0x01160048;
public static final int colorSurfaceVariant=0x01160049;
public static final int colorSwitchThumbNormal=0x01160045;
- /** The maximum number of columns to create when automatically positioning children.
+ /** The maximum number of columns to create when automatically positioning children.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4487,7 +4487,7 @@ containing a value of this type.
*/
public static final int columnCount=0x01010377;
/** Fraction of the animation duration used to delay the beginning of
- the animation of each column.
+ the animation of each column.
May be a floating point value, such as "1.2
".
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
@@ -4511,7 +4511,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int columnOrderPreserved=0x01010378;
- /** Specifies the fixed width for each column.
+ /** Specifies the fixed width for each column.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -4522,7 +4522,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int columnWidth=0x01010117;
- /** Commit icon shown in the query suggestion row.
+ /** Commit icon shown in the query suggestion row.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -4536,7 +4536,7 @@ or to a theme attribute in the form "?[package:][type:]na
is offered to run it in a compatibility mode that emulates a
smaller screen and zooms it to fit the screen. Currently the compatibility mode only
emulates phone screens with a 320dp width, so compatibility mode is not applied if the
- value for compatibleWidthLimitDp is larger than 320.
+ value for compatibleWidthLimitDp is larger than 320.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4545,13 +4545,13 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int compatibleWidthLimitDp=0x01010365;
- /** @hide For use by platform and tools only. Developers should not specify this value.
+ /** @hide For use by platform and tools only. Developers should not specify this value.
The user-visible SDK version (ex. 26) of the framework against which the application was
compiled. This attribute is automatically specified by the Android build tools and should
NOT be manually specified.
This attribute is the compile-time equivalent of
- {@link android.os.Build.VERSION#SDK_INT Build.VERSION.SDK_INT}.
+ {@link android.os.Build.VERSION#SDK_INT Build.VERSION.SDK_INT}.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4560,14 +4560,14 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int compileSdkVersion=0x01010572;
- /** @hide For use by platform and tools only. Developers should not specify this value.
+ /** @hide For use by platform and tools only. Developers should not specify this value.
The development codename (ex. "O") of the framework against which the application was
compiled, or "REL" if the application was compiled against a release build. This attribute
is automatically specified by the Android build tools and should NOT be manually
specified.
This attribute is the compile-time equivalent of
- {@link android.os.Build.VERSION#CODENAME Build.VERSION.CODENAME}.
+ {@link android.os.Build.VERSION#CODENAME Build.VERSION.CODENAME}.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4576,7 +4576,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int compileSdkVersionCodename=0x01010573;
- /** Defines the hint displayed in the drop down menu.
+ /** Defines the hint displayed in the drop down menu.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4585,13 +4585,13 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int completionHint=0x01010172;
- /** Defines the hint view displayed in the drop down menu.
+ /** Defines the hint view displayed in the drop down menu.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int completionHintView=0x01010173;
/** Defines the number of characters that the user must type before
- completion suggestions are displayed in a drop down menu.
+ completion suggestions are displayed in a drop down menu.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4614,7 +4614,7 @@ containing a value of this type.
These values must be kept in sync with those in
{@link android.content.pm.ActivityInfo} and
- include/utils/ResourceTypes.h.
+ include/utils/ResourceTypes.h.
Must be one or more (separated by '|') of the following constant values.
@@ -4675,7 +4675,7 @@ containing a value of this type.
*/
public static final int configChanges=0x0101001f;
/** A class name in the AppWidget's package to be launched to configure.
- If not supplied, then no activity will be launched.
+ If not supplied, then no activity will be launched.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4687,7 +4687,7 @@ containing a value of this type.
/** If true, the drawable's reported internal size will remain
constant as the state changes; the size is the maximum of all
of the states. If false, the size will vary based on the
- current state.
+ current state.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4696,13 +4696,13 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int constantSize=0x01010196;
- /** Identifier for the child that represents the drawer's content.
+ /** Identifier for the child that represents the drawer's content.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int content=0x0101025b;
/** The age associated with the content rating. The content of this rating is suitable for
- people of this age or above.
+ people of this age or above.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4711,7 +4711,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int contentAgeHint=0x010104b9;
- /** the authority of a content provider.
+ /** the authority of a content provider.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4722,7 +4722,7 @@ containing a value of this type.
public static final int contentAuthority=0x01010290;
/** Defines text that briefly describes content of the view. This property is used
primarily for accessibility. Since some views do not have textual
- representation this attribute can be used for providing such.
+ representation this attribute can be used for providing such.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4738,7 +4738,7 @@ containing a value of this type.
*/
public static final int contentDescription=0x01010273;
/** Minimum inset for content views within a bar. Navigation buttons and
- menu views are excepted. Only valid for some themes and configurations.
+ menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -4750,7 +4750,7 @@ containing a value of this type.
*/
public static final int contentInsetEnd=0x01010454;
/** Minimum inset for content views within a bar when actions from a menu
- are present. Only valid for some themes and configurations.
+ are present. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -4762,7 +4762,7 @@ containing a value of this type.
*/
public static final int contentInsetEndWithActions=0x01010523;
/** Minimum inset for content views within a bar. Navigation buttons and
- menu views are excepted. Only valid for some themes and configurations.
+ menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -4774,7 +4774,7 @@ containing a value of this type.
*/
public static final int contentInsetLeft=0x01010455;
/** Minimum inset for content views within a bar. Navigation buttons and
- menu views are excepted. Only valid for some themes and configurations.
+ menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -4786,7 +4786,7 @@ containing a value of this type.
*/
public static final int contentInsetRight=0x01010456;
/** Minimum inset for content views within a bar. Navigation buttons and
- menu views are excepted. Only valid for some themes and configurations.
+ menu views are excepted. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -4798,7 +4798,7 @@ containing a value of this type.
*/
public static final int contentInsetStart=0x01010453;
/** Minimum inset for content views within a bar when a navigation button
- is present, such as the Up button. Only valid for some themes and configurations.
+ is present, such as the Up button. Only valid for some themes and configurations.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -4810,7 +4810,7 @@ containing a value of this type.
*/
public static final int contentInsetStartWithNavigation=0x01010522;
public static final int contentSensitivity=0x011600b9;
- /** Defines whether this view reacts to context click events.
+ /** Defines whether this view reacts to context click events.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4820,23 +4820,23 @@ containing a value of this type.
*/
public static final int contextClickable=0x010104e7;
/** Title of the uri that specifies a link for further context of this wallpaper,
- for example, Explore collection.
+ for example, Explore collection.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int contextDescription=0x0101052e;
- /** Default context menu PopupMenu style.
+ /** Default context menu PopupMenu style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int contextPopupMenuStyle=0x01010501;
/** Uri that specifies a link for further context of this wallpaper, for example,
- http://www.picasso.org.
+ http://www.picasso.org.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int contextUri=0x0101052d;
- /** The x coordinate of the first control point of the cubic Bezier.
+ /** The x coordinate of the first control point of the cubic Bezier.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4845,7 +4845,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int controlX1=0x010103fc;
- /** The x coordinate of the second control point of the cubic Bezier.
+ /** The x coordinate of the second control point of the cubic Bezier.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4854,7 +4854,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int controlX2=0x010103fe;
- /** The y coordinate of the first control point of the cubic Bezier.
+ /** The y coordinate of the first control point of the cubic Bezier.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4863,7 +4863,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int controlY1=0x010103fd;
- /** The y coordinate of the second control point of the cubic Bezier.
+ /** The y coordinate of the second control point of the cubic Bezier.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4874,7 +4874,7 @@ containing a value of this type.
public static final int controlY2=0x010103ff;
public static final int controllerType=0x011600a2;
/** Specifies whether this Chronometer counts down or counts up from the base.
- If not specified this is false and the Chronometer counts up.
+ If not specified this is false and the Chronometer counts up.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4884,7 +4884,7 @@ containing a value of this type.
*/
public static final int countDown=0x0101051b;
/** The country code associated with the content rating system, which consists of two
- uppercase letters that conform to the ISO 3166 standard.
+ uppercase letters that conform to the ISO 3166 standard.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4893,7 +4893,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int country=0x010104ba;
- /** If true, the image will be cropped to fit within its padding.
+ /** If true, the image will be cropped to fit within its padding.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4905,7 +4905,7 @@ containing a value of this type.
/** If {@code true} indicates that this application is capable of presenting a unified
interface representing multiple profiles.
- The default value is {@code false}.
+ The default value is {@code false}.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4914,7 +4914,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int crossProfile=0x0101060e;
- /** Makes the cursor visible (the default) or invisible.
+ /** Makes the cursor visible (the default) or invisible.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4944,14 +4944,14 @@ containing a value of this type.
public static final int customColorThemeAppRing=0x01160081;
public static final int customColorUnderSurface=0x01160087;
public static final int customColorWidgetBackground=0x0116007b;
- /** Specifies a layout for custom navigation. Overrides navigationMode.
+ /** Specifies a layout for custom navigation. Overrides navigationMode.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int customNavigationLayout=0x010102d2;
/** Account handles its own token storage and permissions.
Default to false
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -4968,7 +4968,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int cycles=0x010101d4;
- /** Gap between dashes in the stroke.
+ /** Gap between dashes in the stroke.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -4979,7 +4979,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int dashGap=0x010101a7;
- /** Length of a dash in the stroke.
+ /** Length of a dash in the stroke.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -4995,7 +4995,7 @@ containing a value of this type.
Note: scheme and host name matching in the Android framework is
case-sensitive, unlike the formal RFC. As a result,
URIs here should always be normalized to use lower case letters
- for these elements (as well as other proper Uri normalization).
+ for these elements (as well as other proper Uri normalization).
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5014,14 +5014,14 @@ containing a value of this type.
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int dataExtractionRules=0x0101063e;
- /** The DatePicker dialog theme.
+ /** The DatePicker dialog theme.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int datePickerDialogTheme=0x010104ac;
/** Defines the look of the widget. Prior to the L release, the only choice was
spinner. As of L, with the Material theme selected, the default layout is calendar,
- but this attribute can be used to force spinner to be used instead.
+ but this attribute can be used to force spinner to be used instead.
Must be one of the following constant values.
@@ -5033,19 +5033,19 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int datePickerMode=0x010104b3;
- /** The DatePicker style.
+ /** The DatePicker style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int datePickerStyle=0x0101035c;
- /** The text appearance for the day numbers in the calendar grid.
+ /** The text appearance for the day numbers in the calendar grid.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int dateTextAppearance=0x01010349;
public static final int dayHighlightColor=0x011600f2;
/** The background color for the header's day of week.
- {@deprecated No longer displayed.}
+ {@deprecated No longer displayed.}
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -5057,7 +5057,7 @@ containing a value of this type.
@Deprecated
public static final int dayOfWeekBackground=0x01010494;
/** The text color for the header's day of week.
- {@deprecated No longer displayed.}
+ {@deprecated No longer displayed.}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -5065,7 +5065,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int dayOfWeekTextAppearance=0x01010495;
public static final int daySelectorColor=0x011600f1;
/** Flag indicating whether the application can be debugged, even when
- running on a device that is running in user mode.
+ running on a device that is running in user mode.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5075,7 +5075,7 @@ containing a value of this type.
*/
public static final int debuggable=0x0101000f;
/** Whether this View should use a default focus highlight when it gets focused but
- doesn't have {@link android.R.attr#state_focused} defined in its background.
+ doesn't have {@link android.R.attr#state_focused} defined in its background.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5085,7 +5085,7 @@ containing a value of this type.
*/
public static final int defaultFocusHighlightEnabled=0x01010562;
/** Default height of the activity. Can be either a fixed value or fraction, in which case
- the height will be constructed as a fraction of the total available height.
+ the height will be constructed as a fraction of the total available height.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -5111,7 +5111,7 @@ containing a value of this type.
public static final int defaultToDeviceProtectedStorage=0x01010504;
/** The default value for the preference, which will be set either if persistence
is off or persistence is on and the preference is not found in the persistent
- storage.
+ storage.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
@@ -5121,7 +5121,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int defaultValue=0x010101ed;
/** Default width of the activity. Can be either a fixed value or fraction, in which case
- the width will be constructed as a fraction of the total available width.
+ the width will be constructed as a fraction of the total available width.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -5136,7 +5136,7 @@ containing a value of this type.
*/
public static final int defaultWidth=0x010104f4;
/** Fraction of the animation duration used to delay the beginning of
- the animation of each child.
+ the animation of each child.
May be a floating point value, such as "1.2
".
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
@@ -5149,7 +5149,7 @@ containing a value of this type.
*/
public static final int delay=0x010101cc;
/** The key of another Preference that this Preference will depend on. If the other
- Preference is not set or is off, this Preference will be disabled.
+ Preference is not set or is off, this Preference will be disabled.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5159,7 +5159,7 @@ containing a value of this type.
*/
public static final int dependency=0x010101ec;
/** Defines the relationship between the ViewGroup and its descendants
- when looking for a View to take focus.
+ when looking for a View to take focus.
Must be one of the following constant values.
@@ -5172,13 +5172,13 @@ containing a value of this type.
*/
public static final int descendantFocusability=0x010100f1;
- /** Descriptive text for the associated data.
+ /** Descriptive text for the associated data.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int description=0x01010020;
/** Special option for window animations: if this window is on top
- of a wallpaper, don't animate the wallpaper with it.
+ of a wallpaper, don't animate the wallpaper with it.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5187,7 +5187,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int detachWallpaper=0x010102a6;
- /** Column in data table that contains details for this data.
+ /** Column in data table that contains details for this data.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5196,7 +5196,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int detailColumn=0x010102a3;
- /** Flag indicating that detail should be built from SocialProvider.
+ /** Flag indicating that detail should be built from SocialProvider.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5208,7 +5208,7 @@ containing a value of this type.
/** Background that can be used behind parts of a UI that provide
details on data the user is selecting. For example, this is
the background element of PreferenceActivity's embedded
- preference fragment.
+ preference fragment.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -5217,7 +5217,7 @@ or to a theme attribute in the form "?[package:][type:]na
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int dial=0x01010102;
- /** Tint to apply to the dial graphic.
+ /** Tint to apply to the dial graphic.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -5227,7 +5227,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int dialTint=0x01010636;
- /** Blending mode used to apply the dial graphic tint.
+ /** Blending mode used to apply the dial graphic tint.
Must be one of the following constant values.
@@ -5248,7 +5248,7 @@ containing a value of this type.
*/
public static final int dialTintMode=0x01010637;
- /** Corner radius of dialogs.
+ /** Corner radius of dialogs.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -5260,20 +5260,20 @@ containing a value of this type.
*/
public static final int dialogCornerRadius=0x01010571;
public static final int dialogCustomTitleDecorLayout=0x01160032;
- /** The icon for the dialog.
+ /** The icon for the dialog.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int dialogIcon=0x010101f4;
/** A layout to be used as the content View for the dialog. By default, this shouldn't
be needed. If a custom DialogPreference is required, this should be set. For example,
- the EditTextPreference uses a layout with an EditText as this attribute.
+ the EditTextPreference uses a layout with an EditText as this attribute.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int dialogLayout=0x010101f7;
/** The message in the dialog. If a dialogLayout is provided and contains
- a TextView with ID android:id/message, this message will be placed in there.
+ a TextView with ID android:id/message, this message will be placed in there.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5283,12 +5283,12 @@ containing a value of this type.
*/
public static final int dialogMessage=0x010101f3;
public static final int dialogMode=0x011600ea;
- /** Default style for DialogPreference.
+ /** Default style for DialogPreference.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int dialogPreferenceStyle=0x01010091;
- /** Preferred padding for dialog content.
+ /** Preferred padding for dialog content.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -5299,12 +5299,12 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int dialogPreferredPadding=0x010104d3;
- /** Theme to use for dialogs spawned from this theme.
+ /** Theme to use for dialogs spawned from this theme.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int dialogTheme=0x01010308;
- /** The title in the dialog.
+ /** The title in the dialog.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5319,7 +5319,7 @@ containing a value of this type.
and that these specific characters are the ones that it will
accept.
If this is set, numeric is implied to be true.
- The default is false.
+ The default is false.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5330,7 +5330,7 @@ containing a value of this type.
public static final int digits=0x01010166;
/** Indicate if this component is aware of direct boot lifecycle, and can be
safely run before the user has entered their credentials (such as a lock
- pattern or PIN).
+ pattern or PIN).
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5339,7 +5339,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int directBootAware=0x01010505;
- /** Direction of the animation in the grid.
+ /** Direction of the animation in the grid.
Must be one or more (separated by '|') of the following constant values.
@@ -5353,9 +5353,9 @@ containing a value of this type.
*/
public static final int direction=0x010101d1;
- /** @deprecated Removed.
+ /** @deprecated Removed.
Reference to an array resource that be used to announce the directions with targets around the circle.
- {@deprecated Removed.}
+ {@deprecated Removed.}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -5364,7 +5364,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** Priority of the rows and columns. When the priority is none,
both rows and columns have the same priority. When the priority is
column, the animations will be applied on the columns first. The same
- goes for rows.
+ goes for rows.
Must be one of the following constant values.
@@ -5379,7 +5379,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int directionPriority=0x010101d2;
public static final int disableChildrenWhenDisabled=0x011600e6;
/** The state (true for on, or false for off) that causes dependents to be disabled. By default,
- dependents will be disabled when this is unchecked, so the value of this preference is false.
+ dependents will be disabled when this is unchecked, so the value of this preference is false.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5388,7 +5388,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int disableDependentsState=0x010101f1;
- /** Default disabled alpha for widgets that set enabled/disabled alpha programmatically.
+ /** Default disabled alpha for widgets that set enabled/disabled alpha programmatically.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5397,7 +5397,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int disabledAlpha=0x01010033;
- /** Options affecting how the action bar is displayed.
+ /** Options affecting how the action bar is displayed.
Must be one or more (separated by '|') of the following constant values.
@@ -5416,7 +5416,7 @@ containing a value of this type.
public static final int displayOptions=0x010102d0;
/** Enables or disables dithering of the bitmap if the bitmap does not have the
same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
- an RGB 565 screen).
+ an RGB 565 screen).
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5425,7 +5425,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int dither=0x0101011c;
- /** Drawable or color to draw between list items.
+ /** Drawable or color to draw between list items.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -5433,7 +5433,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int divider=0x01010129;
/** Height of the divider. Will use the intrinsic height of the divider if this
- is not specified.
+ is not specified.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -5444,12 +5444,12 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int dividerHeight=0x0101012a;
- /** Drawable to use for generic horizontal dividers.
+ /** Drawable to use for generic horizontal dividers.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int dividerHorizontal=0x0101032c;
- /** Size of padding on either end of a divider.
+ /** Size of padding on either end of a divider.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -5460,7 +5460,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int dividerPadding=0x0101032a;
- /** Drawable to use for generic vertical dividers.
+ /** Drawable to use for generic vertical dividers.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -5493,7 +5493,7 @@ or to a theme attribute in the form "?[package:][type:]na
Intent.FLAG_ACTIVITY_MULTIPLE_TASK}. If the value of
documentLaunchModes is never
then any use of
{@link android.content.Intent#FLAG_ACTIVITY_NEW_DOCUMENT
- Intent.FLAG_ACTIVITY_NEW_DOCUMENT} to launch this activity will be ignored.
+ Intent.FLAG_ACTIVITY_NEW_DOCUMENT} to launch this activity will be ignored.
Must be one of the following constant values.
@@ -5533,7 +5533,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int dotSize=0x01160161;
/** When set to true, the selector will be drawn over the selected item.
Otherwise the selector is drawn behind the selected item. The default
- value is false.
+ value is false.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5543,34 +5543,34 @@ containing a value of this type.
*/
public static final int drawSelectorOnTop=0x010100fc;
/** Reference to a drawable resource to use for the frame. If not
- given, the drawable must be defined by the first child tag.
+ given, the drawable must be defined by the first child tag.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int drawable=0x01010199;
public static final int drawableAlpha=0x011600d2;
- /** The drawable to be drawn below the text.
+ /** The drawable to be drawn below the text.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int drawableBottom=0x0101016e;
- /** The drawable to be drawn to the end of the text.
+ /** The drawable to be drawn to the end of the text.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int drawableEnd=0x01010393;
- /** The drawable to be drawn to the left of the text.
+ /** The drawable to be drawn to the left of the text.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int drawableLeft=0x0101016f;
- /** The padding between the drawables and the text.
+ /** The padding between the drawables and the text.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -5581,21 +5581,21 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int drawablePadding=0x01010171;
- /** The drawable to be drawn to the right of the text.
+ /** The drawable to be drawn to the right of the text.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int drawableRight=0x01010170;
- /** The drawable to be drawn to the start of the text.
+ /** The drawable to be drawn to the start of the text.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int drawableStart=0x01010392;
- /** Tint to apply to the compound (left, top, etc.) drawables.
+ /** Tint to apply to the compound (left, top, etc.) drawables.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -5605,7 +5605,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int drawableTint=0x010104d6;
- /** Blending mode used to apply the compound (left, top, etc.) drawables tint.
+ /** Blending mode used to apply the compound (left, top, etc.) drawables tint.
Must be one of the following constant values.
@@ -5626,7 +5626,7 @@ containing a value of this type.
*/
public static final int drawableTintMode=0x010104d7;
- /** The drawable to be drawn above the text.
+ /** The drawable to be drawn above the text.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -5636,7 +5636,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** Defines the quality of translucent drawing caches. This property is used
only when the drawing cache is enabled and translucent. The default value is auto.
Deprecated: The view drawing cache was largely made obsolete with the introduction of
- hardware-accelerated rendering in API 11.
+ hardware-accelerated rendering in API 11.
Must be one of the following constant values.
@@ -5663,7 +5663,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int dreamActivityOpenExitAnimation=0x011600a7;
public static final int dreamCategory=0x0116011d;
/** View to anchor the auto-complete dropdown to. If not specified, the text view itself
- is used.
+ is used.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -5672,7 +5672,7 @@ or to a theme attribute in the form "?[package:][type:]na
be a dimension (such as "12dip") for a constant height,
fill_parent or match_parent to fill the height of the
screen, or wrap_content to match the height of
- the content of the drop down.
+ the content of the drop down.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -5696,12 +5696,12 @@ containing a value of this type.
*/
public static final int dropDownHeight=0x01010283;
- /** Default style for drop down hints.
+ /** Default style for drop down hints.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int dropDownHintAppearance=0x01010088;
- /** Amount of pixels by which the drop down should be offset horizontally.
+ /** Amount of pixels by which the drop down should be offset horizontally.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -5712,29 +5712,29 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int dropDownHorizontalOffset=0x010102ac;
- /** Default style for drop down items.
+ /** Default style for drop down items.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int dropDownItemStyle=0x01010086;
- /** Default ListView style for drop downs.
+ /** Default ListView style for drop downs.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int dropDownListViewStyle=0x0101006d;
- /** Selector in a drop down list.
+ /** Selector in a drop down list.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int dropDownSelector=0x01010175;
- /** Default dropdown Spinner style.
+ /** Default dropdown Spinner style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int dropDownSpinnerStyle=0x010102d6;
- /** Amount of pixels by which the drop down should be offset vertically.
+ /** Amount of pixels by which the drop down should be offset vertically.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -5749,7 +5749,7 @@ containing a value of this type.
be a dimension (such as "12dip") for a constant width,
fill_parent or match_parent to match the width of the
screen, or wrap_content to match the width of
- the anchored view.
+ the anchored view.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -5775,7 +5775,7 @@ containing a value of this type.
public static final int dropDownWidth=0x01010262;
public static final int dropdownListPreferredItemHeight=0x01160013;
/** When this attribute is set to true, the view gets its drawable state
- (focused, pressed, etc.) from its direct parent rather than from itself.
+ (focused, pressed, etc.) from its direct parent rather than from itself.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5784,7 +5784,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int duplicateParentState=0x010100e9;
- /** Amount of time (in milliseconds) to display this frame.
+ /** Amount of time (in milliseconds) to display this frame.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5793,24 +5793,24 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int duration=0x01010198;
- /** EditText background drawable.
+ /** EditText background drawable.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int editTextBackground=0x01010352;
- /** EditText text foreground color.
+ /** EditText text foreground color.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int editTextColor=0x01010351;
- /** Default style for EditTextPreference.
+ /** Default style for EditTextPreference.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int editTextPreferenceStyle=0x01010092;
- /** Default EditText style.
+ /** Default EditText style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -5819,7 +5819,7 @@ or to a theme attribute in the form "?[package:][type:]na
It will be a textual one unless it has otherwise been specified.
For TextView, this is false by default. For EditText, it is
true by default.
- {@deprecated Use inputType instead.}
+ {@deprecated Use inputType instead.}
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5836,12 +5836,12 @@ containing a value of this type.
of the input method. This simply fills in
the {@link android.view.inputmethod.EditorInfo#extras
EditorInfo.extras} field when the input
- method is connected.
+ method is connected.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int editorExtras=0x01010224;
- /** Color applied to effects.
+ /** Color applied to effects.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -5851,7 +5851,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int effectColor=0x01010649;
- /** Elegant text height, especially for less compacted complex script text.
+ /** Elegant text height, especially for less compacted complex script text.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5860,7 +5860,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int elegantTextHeight=0x0101045d;
- /** base z depth of the view.
+ /** base z depth of the view.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -5871,7 +5871,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int elevation=0x01010440;
- /** Where to ellipsize text.
+ /** Where to ellipsize text.
Must be one of the following constant values.
@@ -5887,7 +5887,7 @@ containing a value of this type.
*/
public static final int ellipsize=0x010100ab;
public static final int emergencyInstaller=0x01160197;
- /** Makes the TextView be exactly this many ems wide.
+ /** Makes the TextView be exactly this many ems wide.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5907,7 +5907,7 @@ containing a value of this type.
This is equivalent to calling {@link android.app.Activity#setVrModeEnabled} with the
the given component name within the Activity that this attribute is set for.
Declaring this will prevent the system from leaving VR mode during an Activity
- transition from one VR activity to another.
+ transition from one VR activity to another.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5920,7 +5920,7 @@ containing a value of this type.
For example, a non-enabled EditText prevents the user from editing the contained text, and
a non-enabled Button prevents the user from tapping the button.
The appearance of enabled and non-enabled widgets may differ, if the drawables referenced
- from evaluating state_enabled differ.
+ from evaluating state_enabled differ.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5936,7 +5936,7 @@ containing a value of this type.
*/
public static final int enabled=0x0101000e;
/** End inset to apply to the layer. Overrides {@code left} or
- {@code right} depending on layout direction.
+ {@code right} depending on layout direction.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -5947,7 +5947,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int end=0x010104dc;
- /** End color of the gradient.
+ /** End color of the gradient.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -5958,7 +5958,7 @@ containing a value of this type.
*/
public static final int endColor=0x0101019e;
/** X coordinate of the end point origin of the gradient.
- Defined in same coordinates as the path itself
+ Defined in same coordinates as the path itself
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5968,7 +5968,7 @@ containing a value of this type.
*/
public static final int endX=0x01010512;
/** Y coordinate of the end point of the gradient within the shape.
- Defined in same coordinates as the path itself
+ Defined in same coordinates as the path itself
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -5977,9 +5977,9 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int endY=0x01010513;
- /** {@deprecated Use maxDate instead.}
+ /** {@deprecated Use maxDate instead.}
The last year (inclusive), for example "2010".
- {@deprecated Use maxDate instead.}
+ {@deprecated Use maxDate instead.}
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6002,7 +6002,7 @@ containing a value of this type.
If the app does not target at least {@link android.os.Build.VERSION_CODES#Q Q},
this attribute is ignored.
- @see android.view.Window#setNavigationBarContrastEnforced
+ @see android.view.Window#setNavigationBarContrastEnforced
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6026,7 +6026,7 @@ containing a value of this type.
@see android.view.Window#setStatusBarContrastEnforced
@deprecated Draw proper background behind
- {@link android.view.WindowInsets.Type#statusBars()}} instead.
+ {@link android.view.WindowInsets.Type#statusBars()}} instead.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6037,7 +6037,7 @@ containing a value of this type.
@Deprecated
public static final int enforceStatusBarContrast=0x01010604;
public static final int enlargeVertexEntryArea=0x01160127;
- /** Amount of time (in milliseconds) to fade in a new state drawable.
+ /** Amount of time (in milliseconds) to fade in a new state drawable.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6046,14 +6046,14 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int enterFadeDuration=0x0101030c;
- /** Reference to an array resource that will populate a list/adapter.
+ /** Reference to an array resource that will populate a list/adapter.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int entries=0x010100b2;
/** The array to find the value to save for a preference when an entry from
entries is selected. If a user clicks on the second item in entries, the
- second item in this array will be saved to the preference.
+ second item in this array will be saved to the preference.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -6062,7 +6062,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int errorMessageAboveBackground=0x01160011;
public static final int errorMessageBackground=0x01160010;
/** Defines whether the overlay should intercept the motion events when a gesture
- is recognized.
+ is recognized.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6071,7 +6071,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int eventsInterceptionEnabled=0x0101027d;
- /** The fully-qualified name of the Class to exclude from this transition.
+ /** The fully-qualified name of the Class to exclude from this transition.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6081,7 +6081,7 @@ containing a value of this type.
*/
public static final int excludeClass=0x01010442;
/** Indicates that an Activity should be excluded from the list of
- recently launched activities.
+ recently launched activities.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6090,12 +6090,12 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int excludeFromRecents=0x01010017;
- /** The id of a target to exclude from this transition.
+ /** The id of a target to exclude from this transition.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int excludeId=0x01010441;
- /** The transitionName of the target to exclude from this transition.
+ /** The transitionName of the target to exclude from this transition.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6104,7 +6104,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int excludeName=0x0101044e;
- /** Amount of time (in milliseconds) to fade out an old state drawable.
+ /** Amount of time (in milliseconds) to fade out an old state drawable.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6114,7 +6114,7 @@ containing a value of this type.
*/
public static final int exitFadeDuration=0x0101030d;
public static final int expandActivityOverflowButtonDrawable=0x01160119;
- /** The preferred left bound for an expandable list child's indicator.
+ /** The preferred left bound for an expandable list child's indicator.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -6125,7 +6125,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int expandableListPreferredChildIndicatorLeft=0x01010052;
- /** The preferred right bound for an expandable list child's indicator.
+ /** The preferred right bound for an expandable list child's indicator.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -6137,7 +6137,7 @@ containing a value of this type.
*/
public static final int expandableListPreferredChildIndicatorRight=0x01010053;
/** The preferred left padding for an expandable list item that is a child.
- If this is not provided, it defaults to the expandableListPreferredItemPaddingLeft.
+ If this is not provided, it defaults to the expandableListPreferredItemPaddingLeft.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -6149,7 +6149,7 @@ containing a value of this type.
*/
public static final int expandableListPreferredChildPaddingLeft=0x0101004f;
/** The preferred left bound for an expandable list item's indicator. For a child-specific
- indicator, use expandableListPreferredChildIndicatorLeft.
+ indicator, use expandableListPreferredChildIndicatorLeft.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -6161,7 +6161,7 @@ containing a value of this type.
*/
public static final int expandableListPreferredItemIndicatorLeft=0x01010050;
/** The preferred right bound for an expandable list item's indicator. For a child-specific
- indicator, use expandableListPreferredChildIndicatorRight.
+ indicator, use expandableListPreferredChildIndicatorRight.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -6174,7 +6174,7 @@ containing a value of this type.
public static final int expandableListPreferredItemIndicatorRight=0x01010051;
/** The preferred left padding for an expandable list item (for child-specific layouts,
use expandableListPreferredChildPaddingLeft). This takes into account
- the indicator that will be shown to next to the item.
+ the indicator that will be shown to next to the item.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -6185,12 +6185,12 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int expandableListPreferredItemPaddingLeft=0x0101004e;
- /** Default ExpandableListView style.
+ /** Default ExpandableListView style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int expandableListViewStyle=0x0101006f;
- /** ExpandableListView with white background.
+ /** ExpandableListView with white background.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -6205,7 +6205,7 @@ or to a theme attribute in the form "?[package:][type:]na
is true for activity, receiver, and service components that do
have intent filters (implying they expect to be invoked by others
who do not know their particular component name) and for all
- content providers.
+ content providers.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6217,7 +6217,7 @@ containing a value of this type.
public static final int externalRouteEnabledDrawable=0x0116015d;
/** If the service is an {@link android.R.attr#isolatedProcess} service, this permits a
client to bind to the service as if it were running it its own package. The service
- must also be {@link android.R.attr#exported} if this flag is set.
+ must also be {@link android.R.attr#exported} if this flag is set.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6226,7 +6226,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int externalService=0x0101050e;
- /** This is the amount by which to multiply the tension.
+ /** This is the amount by which to multiply the tension.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6236,7 +6236,7 @@ containing a value of this type.
*/
public static final int extraTension=0x0101026b;
/** When set installer will extract native libraries. If set to false
- libraries in the apk must be stored and page-aligned.
+ libraries in the apk must be stored and page-aligned.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6245,7 +6245,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int extractNativeLibs=0x010104ea;
- /** This is the amount of deceleration to add when easing in.
+ /** This is the amount of deceleration to add when easing in.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6255,7 +6255,7 @@ containing a value of this type.
*/
public static final int factor=0x010101d3;
/** Duration, in milliseconds, of the fade out effect after the user is done
- drawing a gesture.
+ drawing a gesture.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6264,7 +6264,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int fadeDuration=0x01010278;
- /** Defines whether the gesture will automatically fade out after being recognized.
+ /** Defines whether the gesture will automatically fade out after being recognized.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6274,7 +6274,7 @@ containing a value of this type.
*/
public static final int fadeEnabled=0x0101027e;
/** Time, in milliseconds, to wait before the gesture fades out after the user
- is done drawing it.
+ is done drawing it.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6283,7 +6283,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int fadeOffset=0x01010277;
- /** Defines whether to fade out scrollbars when they are not in use.
+ /** Defines whether to fade out scrollbars when they are not in use.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6297,7 +6297,7 @@ containing a value of this type.
Using fading edges may introduce noticeable performance
degradations and should be used only when required by the application's
visual design. To request fading edges with API level 14 and above,
- use the android:requiresFadingEdge
attribute instead.
+ use the android:requiresFadingEdge
attribute instead.
Must be one or more (separated by '|') of the following constant values.
@@ -6310,7 +6310,7 @@ containing a value of this type.
*/
public static final int fadingEdge=0x010100df;
- /** Defines the length of the fading edges.
+ /** Defines the length of the fading edges.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -6322,7 +6322,7 @@ containing a value of this type.
*/
public static final int fadingEdgeLength=0x010100e0;
/** Equivalent to transitionVisibilityMode
, fadingMode works only
- with the Fade transition.
+ with the Fade transition.
Must be one of the following constant values.
@@ -6337,7 +6337,7 @@ containing a value of this type.
public static final int fadingMode=0x010103e1;
/** Whether to respect the ascent and descent of the fallback fonts that are used in
displaying the text. When true, fallback fonts that end up getting used can increase
- the ascent and descent of the lines that they are used on.
+ the ascent and descent of the lines that they are used on.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6353,7 +6353,7 @@ containing a value of this type.
*/
public static final int fallbackLineSpacing=0x0101057b;
/** When set to true, the list will always show the fast scroll interface.
- This setting implies fastScrollEnabled.
+ This setting implies fastScrollEnabled.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6363,7 +6363,7 @@ containing a value of this type.
*/
public static final int fastScrollAlwaysVisible=0x01010335;
/** Enables the fast scroll thumb that can be dragged to quickly scroll through
- the list.
+ the list.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6372,7 +6372,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int fastScrollEnabled=0x01010226;
- /** Position of the fast scroll index overlay window.
+ /** Position of the fast scroll index overlay window.
Must be one of the following constant values.
@@ -6386,24 +6386,24 @@ containing a value of this type.
*/
public static final int fastScrollOverlayPosition=0x0101033a;
/** Drawable to use as the fast scroll index preview window background
- when shown on the left.
+ when shown on the left.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int fastScrollPreviewBackgroundLeft=0x01010337;
/** Drawable to use as the fast scroll index preview window background
- when shown on the right.
+ when shown on the right.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int fastScrollPreviewBackgroundRight=0x01010338;
- /** Specifies the style of the fast scroll decorations.
+ /** Specifies the style of the fast scroll decorations.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int fastScrollStyle=0x010103f7;
/** Text color for the fast scroll index overlay. Make sure it
- plays nicely with fastScrollPreviewBackground[Left|Right].
+ plays nicely with fastScrollPreviewBackground[Left|Right].
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -6413,13 +6413,13 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int fastScrollTextColor=0x01010359;
- /** Drawable to use as the fast scroll thumb.
+ /** Drawable to use as the fast scroll thumb.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int fastScrollThumbDrawable=0x01010336;
/** Drawable to use as the track for the fast scroll thumb.
- This may be null.
+ This may be null.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -6437,7 +6437,7 @@ containing a value of this type.
*/
public static final int fillAfter=0x010101bd;
/** The alpha of the path fill, as a value between 0 (completely transparent)
- and 1 (completely opaque).
+ and 1 (completely opaque).
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6447,7 +6447,7 @@ containing a value of this type.
*/
public static final int fillAlpha=0x010104cc;
/** When set to true or when fillEnabled is not set to true, the animation transformation
- is applied before the animation has started. The default value is true.
+ is applied before the animation has started. The default value is true.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6456,7 +6456,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int fillBefore=0x010101bc;
- /** The color to fill the path if not defined implies no fill.
+ /** The color to fill the path if not defined implies no fill.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -6466,7 +6466,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int fillColor=0x01010404;
- /** When set to true, the value of fillBefore is taken into account.
+ /** When set to true, the value of fillBefore is taken into account.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6476,7 +6476,7 @@ containing a value of this type.
*/
public static final int fillEnabled=0x0101024f;
/** sets the fillType for a path. It is the same as SVG's "fill-rule" properties.
- For more details, see https://www.w3.org/TR/SVG/painting.html#FillRuleProperty.
+ For more details, see https://www.w3.org/TR/SVG/painting.html#FillRuleProperty.
Must be one of the following constant values.
@@ -6488,7 +6488,7 @@ containing a value of this type.
*/
public static final int fillType=0x0101051e;
- /** Defines whether the scrollview should stretch its content to fill the viewport.
+ /** Defines whether the scrollview should stretch its content to fill the viewport.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6498,7 +6498,7 @@ containing a value of this type.
*/
public static final int fillViewport=0x0101017a;
/** Enables or disables bitmap filtering. Filtering is used when the bitmap is
- shrunk or stretched to smooth its appearance. Default value is true.
+ shrunk or stretched to smooth its appearance. Default value is true.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6510,7 +6510,7 @@ containing a value of this type.
/** Specifies whether to filter touches when the view's window is obscured by
another visible window. When set to true, the view will not receive touches
whenever a toast, dialog or other window appears above the view's window.
- Refer to the {@link android.view.View} security documentation for more details.
+ Refer to the {@link android.view.View} security documentation for more details.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6532,7 +6532,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** Specify whether an activity should be finished when a "close system
windows" request has been made. This happens, for example, when
the home key is pressed, when the device is locked, when a system
- dialog showing recent applications is displayed, etc.
+ dialog showing recent applications is displayed, etc.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6546,7 +6546,7 @@ containing a value of this type.
If both this option and {@link android.R.attr#allowTaskReparenting} are
specified, the finish trumps the affinity: the affinity will be
- ignored and the activity simply finished.
+ ignored and the activity simply finished.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6556,7 +6556,7 @@ containing a value of this type.
*/
public static final int finishOnTaskLaunch=0x01010014;
/** Distance from the top of the TextView to the first text baseline. If set, this
- overrides the value set for paddingTop.
+ overrides the value set for paddingTop.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -6567,7 +6567,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int firstBaselineToTopHeight=0x0101057d;
- /** The first day of week according to {@link java.util.Calendar}.
+ /** The first day of week according to {@link java.util.Calendar}.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6579,7 +6579,7 @@ containing a value of this type.
/** Boolean internal attribute to adjust view layout based on
system windows such as the status bar.
If true, adjusts the padding of this view to leave space for the system windows.
- Will only take effect if this view is in a non-embedded activity.
+ Will only take effect if this view is in a non-embedded activity.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6607,7 +6607,7 @@ containing a value of this type.
take focus. This value does not impact the behavior of
directly calling {@link android.view.View#requestFocus}, which will
always request focus regardless of this view. It only impacts where
- focus navigation will try to move focus.
+ focus navigation will try to move focus.
May be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6626,7 +6626,7 @@ containing a value of this type.
public static final int focusable=0x010100da;
/** Boolean that controls whether a view can take focus while in touch mode.
If this is true for a view, that view can gain focus when clicked on, and can keep
- focus if another view is clicked on that doesn't have this attribute set to true.
+ focus if another view is clicked on that doesn't have this attribute set to true.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6637,7 +6637,7 @@ containing a value of this type.
public static final int focusableInTouchMode=0x010100db;
/** Whether this view is a default-focus view.
Only one view per keyboard navigation cluster can have this attribute set to true.
- See {@link android.view.View#setFocusedByDefault(boolean)}.
+ See {@link android.view.View#setFocusedByDefault(boolean)}.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6646,7 +6646,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int focusedByDefault=0x01010544;
- /** @deprecated The color for the dates of the focused month.
+ /** @deprecated The color for the dates of the focused month.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -6656,12 +6656,12 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int focusedMonthDateColor=0x01010343;
public static final int focusedSearchResultHighlightColor=0x011600df;
/** The reference to the font file to be used. This should be a file in the res/font folder
- and should therefore have an R reference value. E.g. @font/myfont
+ and should therefore have an R reference value. E.g. @font/myfont
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int font=0x01010532;
- /** Default font family.
+ /** Default font family.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6670,7 +6670,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int fontFamily=0x010103ac;
- /** Font feature settings.
+ /** Font feature settings.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6682,7 +6682,7 @@ containing a value of this type.
/** The authority of the Font Provider to be used for the request.
{@deprecated Use app:fontProviderAuthority with Jetpack Core library instead for
consistent behavior across all devices.}
-
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6698,7 +6698,7 @@ containing a value of this type.
individual list represents one collection of signature hashes. Refer to your font provider's
documentation for these values.
{@deprecated Use app:fontProviderCerts with Jetpack Core library instead.}
-
+
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -6707,7 +6707,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** The package for the Font Provider to be used for the request. This is used to verify
the identity of the provider.
{@deprecated Use app:fontProviderPackage with Jetpack Core library instead.}
-
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6720,7 +6720,7 @@ containing a value of this type.
/** The query to be sent over to the provider. Refer to your font provider's documentation
on the format of this string.
{@deprecated Use app:fontProviderQuery with Jetpack Core library instead.}
-
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6734,7 +6734,7 @@ containing a value of this type.
if the fontProviderQuery asked for "Sans Serif", it is possible to define
fontProviderSystemFontFamily as "sans-serif" to tell the system to use "sans-serif" font
family if it exists on the system.
-
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6745,7 +6745,7 @@ containing a value of this type.
public static final int fontProviderSystemFontFamily=0x01010622;
/** The style of the given font file. This will be used when the font is being loaded into
the font stack and will override any style information in the font's header tables. If
- unspecified, the value in the font's header tables will be used.
+ unspecified, the value in the font's header tables will be used.
Must be one of the following constant values.
@@ -6757,7 +6757,7 @@ containing a value of this type.
*/
public static final int fontStyle=0x0101053f;
- /** Font variation settings.
+ /** Font variation settings.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6776,7 +6776,7 @@ containing a value of this type.
the font stack and will override any weight information in the font's header tables. Must
be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most
common values are 400 for regular weight and 700 for bold weight. If unspecified, the value
- in the font's header tables will be used.
+ in the font's header tables will be used.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6786,7 +6786,7 @@ containing a value of this type.
*/
public static final int fontWeight=0x01010533;
/** When set to false, the ListView will not draw the divider before each footer view.
- The default value is true.
+ The default value is true.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6801,7 +6801,7 @@ containing a value of this type.
this theme.
Setting this to true will allow this view to be automatically made dark, however
a value of 'true' will not override any 'false' value in its parent chain nor will
- it prevent any 'false' in any of its children.
+ it prevent any 'false' in any of its children.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6817,7 +6817,7 @@ containing a value of this type.
*/
public static final int forceDarkAllowed=0x0101058c;
/** Whether this view has elements that may overlap when drawn. See
- {@link android.view.View#forceHasOverlappingRendering(boolean)}.
+ {@link android.view.View#forceHasOverlappingRendering(boolean)}.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6830,7 +6830,7 @@ containing a value of this type.
device, regardless of what they declare via the {@code queries} tags in their
manifest.
- The default value is {@code false}.
+ The default value is {@code false}.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6851,7 +6851,7 @@ containing a value of this type.
This is useful for a content provider that dynamically enforces permissions
on calls in to the provider, instead of through the manifest: the system
needs to know that it should always apply permission grants, even if it
- looks like the target of the grant would already have access to the URI.
+ looks like the target of the grant would already have access to the URI.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -6862,7 +6862,7 @@ containing a value of this type.
public static final int forceUriPermissions=0x0101059f;
/** Defines the drawable to draw over the content. This can be used as an overlay.
The foreground drawable participates in the padding of the content if the gravity
- is set to fill.
+ is set to fill.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -6870,7 +6870,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int foreground=0x01010109;
/** Defines the gravity to apply to the foreground drawable. The gravity defaults
- to fill.
+ to fill.
Must be one or more (separated by '|') of the following constant values.
@@ -6900,7 +6900,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int foregroundGravity=0x01010200;
public static final int foregroundInsidePadding=0x011600b0;
/** Specify the type of foreground service. Multiple types can be specified by ORing the flags
- together.
+ together.
Must be one or more (separated by '|') of the following constant values.
@@ -7039,7 +7039,7 @@ or to a theme attribute in the form "?[package:][type:]na
TODO: b/258855262 mark this field as {@code hide} once this bug is fixed.
-
+
Media processing use cases such as video or photo editing and processing.
Requires the app to hold the permission
{@link android.Manifest.permission#FOREGROUND_SERVICE_MEDIA_PROCESSING} in order to use
@@ -7057,7 +7057,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int foregroundServiceType=0x01010599;
- /** Tint to apply to the foreground.
+ /** Tint to apply to the foreground.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -7067,7 +7067,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int foregroundTint=0x0101046d;
- /** Blending mode used to apply the foreground tint.
+ /** Blending mode used to apply the foreground tint.
Must be one of the following constant values.
@@ -7092,7 +7092,7 @@ containing a value of this type.
string, with the first "%s" replaced by the current timer value
in "MM:SS" or "H:MM:SS" form.
If no format string is specified, the Chronometer will simply display
- "MM:SS" or "H:MM:SS".
+ "MM:SS" or "H:MM:SS".
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7104,7 +7104,7 @@ containing a value of this type.
/** Specifies the formatting pattern used to show the time and/or date
in 12-hour mode. Please refer to {@link android.text.format.DateFormat}
for a complete description of accepted formatting patterns.
- The default pattern is a locale-appropriate equivalent of "h:mm a".
+ The default pattern is a locale-appropriate equivalent of "h:mm a".
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7116,7 +7116,7 @@ containing a value of this type.
/** Specifies the formatting pattern used to show the time and/or date
in 24-hour mode. Please refer to {@link android.text.format.DateFormat}
for a complete description of accepted formatting patterns.
- The default pattern is a locale-appropriate equivalent of "H:mm".
+ The default pattern is a locale-appropriate equivalent of "H:mm".
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7133,7 +7133,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int fraction=0x010104d8;
- /** The fragment that is displayed when the user selects this item.
+ /** The fragment that is displayed when the user selects this item.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7152,7 +7152,7 @@ containing a value of this type.
/** Sets whether the enter and exit transitions should overlap when transitioning
forward.
Corresponds to {@link android.app.Fragment#setAllowEnterTransitionOverlap(
- boolean)}
+ boolean)}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -7160,7 +7160,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** Sets whether the enter and exit transitions should overlap when transitioning
because of popping the back stack.
Corresponds to {@link android.app.Fragment#setAllowReturnTransitionOverlap(
- boolean)}
+ boolean)}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -7176,7 +7176,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int fragmentCloseExitAnimation=0x010102e8;
/** The Transition that will be used to move Views into the initial scene.
Corresponds to {@link android.app.Fragment#setEnterTransition(
- android.transition.Transition)}
+ android.transition.Transition)}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -7184,7 +7184,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** The Transition that will be used to move Views out of the scene when the
fragment is removed, hidden, or detached when not popping the back stack.
Corresponds to {@link android.app.Fragment#setExitTransition(
- android.transition.Transition)}
+ android.transition.Transition)}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -7210,7 +7210,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** The Transition that will be used to move Views in to the scene when returning due
to popping a back stack.
Corresponds to {@link android.app.Fragment#setReenterTransition(
- android.transition.Transition)}
+ android.transition.Transition)}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -7218,7 +7218,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** The Transition that will be used to move Views out of the scene when the Fragment is
preparing to be removed, hidden, or detached because of popping the back stack.
Corresponds to {@link android.app.Fragment#setReturnTransition(
- android.transition.Transition)}
+ android.transition.Transition)}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -7226,7 +7226,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** The Transition that will be used for shared elements transferred into the content
Scene.
Corresponds to {@link android.app.Fragment#setSharedElementEnterTransition(
- android.transition.Transition)}
+ android.transition.Transition)}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -7234,7 +7234,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** The Transition that will be used for shared elements transferred back during a
pop of the back stack. This Transition acts in the leaving Fragment.
Corresponds to {@link android.app.Fragment#setSharedElementReturnTransition(
- android.transition.Transition)}
+ android.transition.Transition)}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -7248,7 +7248,7 @@ or to a theme attribute in the form "?[package:][type:]na
it can be useful when the contents of a text view is not stored
in a persistent place such as a content provider. For
{@link android.widget.EditText} it is always enabled, regardless
- of the value of the attribute.
+ of the value of the attribute.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7278,14 +7278,14 @@ containing a value of this type.
public static final int fromExtendLeft=0x0116010b;
public static final int fromExtendRight=0x0116010d;
public static final int fromExtendTop=0x0116010c;
- /** Keyframe identifier for the starting state.
+ /** Keyframe identifier for the starting state.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int fromId=0x0101044a;
public static final int fromLeft=0x01160103;
public static final int fromRight=0x01160105;
- /** The originating scene in this scene change.
+ /** The originating scene in this scene change.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -7349,7 +7349,7 @@ containing a value of this type.
public static final int fromYScale=0x010101c4;
/** Applications will set this in their manifest to opt-in to or out of full app data back-up
and restore. Alternatively they can set it to an xml resource within their app that will
- be parsed by the BackupAgent to selectively backup files indicated within that xml.
+ be parsed by the BackupAgent to selectively backup files indicated within that xml.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a boolean value, either "true
" or "false
".
@@ -7360,7 +7360,7 @@ or to a theme attribute in the form "?[package:][type:]na
data. This lets the app rely on full-data backups while still participating in
the backup and restore process via the BackupAgent's full-data backup APIs.
When this attribute is true
the app's BackupAgent overrides of
- the onBackup() and onRestore() callbacks can be empty stubs.
+ the onBackup() and onRestore() callbacks can be empty stubs.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7382,7 +7382,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int fullDark=0x010100c6;
/** Flag indicating that an Instrumentation class should be run as a
- functional test.
+ functional test.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7392,18 +7392,18 @@ containing a value of this type.
*/
public static final int functionalTest=0x01010023;
/** The preferred background for gallery items. This should be set
- as the background of any Views you provide from the Adapter.
+ as the background of any Views you provide from the Adapter.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int galleryItemBackground=0x0101004c;
- /** Default Gallery style.
+ /** Default Gallery style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int galleryStyle=0x01010070;
public static final int gameSessionService=0x01160129;
- /** Color used to draw a gesture.
+ /** Color used to draw a gesture.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -7414,7 +7414,7 @@ containing a value of this type.
*/
public static final int gestureColor=0x01010275;
public static final int gestureOverlayViewStyle=0x0116001f;
- /** Minimum curve angle a stroke must contain before it is recognized as a gesture.
+ /** Minimum curve angle a stroke must contain before it is recognized as a gesture.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7423,7 +7423,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int gestureStrokeAngleThreshold=0x0101027c;
- /** Minimum length of a stroke before it is recognized as a gesture.
+ /** Minimum length of a stroke before it is recognized as a gesture.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7432,7 +7432,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int gestureStrokeLengthThreshold=0x0101027a;
- /** Squareness threshold of a stroke before it is recognized as a gesture.
+ /** Squareness threshold of a stroke before it is recognized as a gesture.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7441,7 +7441,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int gestureStrokeSquarenessThreshold=0x0101027b;
- /** Defines the type of strokes that define a gesture.
+ /** Defines the type of strokes that define a gesture.
Must be one of the following constant values.
@@ -7453,7 +7453,7 @@ containing a value of this type.
*/
public static final int gestureStrokeType=0x01010279;
- /** Width of the stroke used to draw the gesture.
+ /** Width of the stroke used to draw the gesture.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7465,7 +7465,7 @@ containing a value of this type.
/** The GLES driver version number needed by an application.
The higher 16 bits represent the major number and the lower 16 bits
represent the minor number. For example for GL 1.2 referring to
- 0x00000102, the actual value should be set as 0x00010002.
+ 0x00000102, the actual value should be set as 0x00010002.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7475,13 +7475,13 @@ containing a value of this type.
*/
public static final int glEsVersion=0x01010281;
public static final int glowDot=0x01160163;
- /** Go button icon.
+ /** Go button icon.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int goIcon=0x01010482;
/** Radius of the gradient, used only with radial gradient. May be an explicit dimension
- or a fractional value relative to the shape's minimum dimension.
+ or a fractional value relative to the shape's minimum dimension.
May be a floating point value, such as "1.2
".
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
@@ -7513,7 +7513,7 @@ containing a value of this type.
*/
public static final int grantUriPermissions=0x0101001b;
/** Specifies how an object should position its content, on both the X and Y axes,
- within its own bounds.
+ within its own bounds.
Must be one or more (separated by '|') of the following constant values.
@@ -7543,12 +7543,12 @@ containing a value of this type.
*/
public static final int gravity=0x010100af;
- /** Default GridView style.
+ /** Default GridView style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int gridViewStyle=0x01010071;
- /** Indicator shown beside the group View. This can be a stateful Drawable.
+ /** Indicator shown beside the group View. This can be a stateful Drawable.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -7565,14 +7565,14 @@ or to a theme attribute in the form "?[package:][type:]na
This attribute can be applied to a
{@link android.R.styleable#AndroidManifestProcess process} tag, or to an
{@link android.R.styleable#AndroidManifestApplication application} tag (to supply
- a default setting for all application components).
+ a default setting for all application components).
Must be one of the following constant values.
Constant | Value | Description |
-never | 0 | Default behavior: GwpAsan is disabled in user apps, randomly enabled in system apps.
+ |
never | 0 | Default behavior: GwpAsan is disabled in user apps, randomly enabled in system apps.
Never enable GwpAsan. |
always | 1 | Always enable GwpAsan. |
@@ -7583,7 +7583,7 @@ or to a theme attribute in the form "?[package:][type:]na
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int hand_hour=0x01010103;
- /** Tint to apply to the hour hand graphic.
+ /** Tint to apply to the hour hand graphic.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -7593,7 +7593,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int hand_hourTint=0x01010638;
- /** Blending mode used to apply the hour hand graphic tint.
+ /** Blending mode used to apply the hour hand graphic tint.
Must be one of the following constant values.
@@ -7618,7 +7618,7 @@ containing a value of this type.
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int hand_minute=0x01010104;
- /** Tint to apply to the minute hand graphic.
+ /** Tint to apply to the minute hand graphic.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -7628,7 +7628,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int hand_minuteTint=0x0101063a;
- /** Blending mode used to apply the minute hand graphic tint.
+ /** Blending mode used to apply the minute hand graphic tint.
Must be one of the following constant values.
@@ -7653,7 +7653,7 @@ containing a value of this type.
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int hand_second=0x01010623;
- /** Tint to apply to the second hand graphic.
+ /** Tint to apply to the second hand graphic.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -7663,7 +7663,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int hand_secondTint=0x0101063c;
- /** Blending mode used to apply the second hand graphic tint.
+ /** Blending mode used to apply the second hand graphic tint.
Must be one of the following constant values.
@@ -7684,7 +7684,7 @@ containing a value of this type.
*/
public static final int hand_secondTintMode=0x0101063d;
- /** Identifier for the child that represents the drawer's handle.
+ /** Identifier for the child that represents the drawer's handle.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -7693,7 +7693,7 @@ or to a theme attribute in the form "?[package:][type:]na
of starting/stopping profiling itself, rather than relying on
the default behavior of profiling the complete time it is running.
This allows it to target profiling data at a specific set of
- operations.
+ operations.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7707,7 +7707,7 @@ containing a value of this type.
public static final int handwritingBoundsOffsetRight=0x011600b7;
public static final int handwritingBoundsOffsetTop=0x011600b6;
/** Boolean that controls whether a view should have haptic feedback
- enabled for events such as long presses.
+ enabled for events such as long presses.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7730,7 +7730,7 @@ containing a value of this type.
the activity's own window, will be hardware accelerated, if possible.
Please refer to the documentation of
{@link android.view.WindowManager.LayoutParams#FLAG_HARDWARE_ACCELERATED}
- for more information on how to control this flag programmatically.
+ for more information on how to control this flag programmatically.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7742,7 +7742,7 @@ containing a value of this type.
/** Indicate whether this application contains code. If set to false,
there is no code associated with it and thus the system will not
try to load its code when launching components. The default is true
- for normal behavior.
+ for normal behavior.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7751,7 +7751,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int hasCode=0x0101000c;
- /** If {@code true} the user is prompted to keep the app's data on uninstall
+ /** If {@code true} the user is prompted to keep the app's data on uninstall
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7763,7 +7763,7 @@ containing a value of this type.
public static final int hasRoundedCorners=0x01160100;
/** The SHA-512 hash of the only APK that can be used to update a package.
NOTE: This is only applicable to system packages.
- @hide
+ @hide
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7773,13 +7773,13 @@ containing a value of this type.
*/
public static final int hash=0x01010526;
/** The text appearance for the AM/PM header.
- @deprecated Use headerTextColor instead.
+ @deprecated Use headerTextColor instead.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@Deprecated
public static final int headerAmPmTextAppearance=0x010104a0;
- /** Default background for the menu header.
+ /** Default background for the menu header.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -7787,14 +7787,14 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int headerBackground=0x0101012f;
/** The text appearance for the day of month (ex. 28) in the selected date header.
- {@deprecated Use headerTextColor instead.}
+ {@deprecated Use headerTextColor instead.}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@Deprecated
public static final int headerDayOfMonthTextAppearance=0x01010497;
/** When set to false, the ListView will not draw the divider after each header view.
- The default value is true.
+ The default value is true.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7805,7 +7805,7 @@ containing a value of this type.
public static final int headerDividersEnabled=0x0101022e;
public static final int headerLayout=0x01160157;
/** The text appearance for the month (ex. May) in the selected date header.
- {@deprecated Use headerTextColor instead.}
+ {@deprecated Use headerTextColor instead.}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -7814,14 +7814,14 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int headerRemoveIconIfEmpty=0x01160158;
public static final int headerTextColor=0x011600e8;
/** The text appearance for the time header.
- @deprecated Use headerTextColor instead.
+ @deprecated Use headerTextColor instead.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@Deprecated
public static final int headerTimeTextAppearance=0x0101049f;
/** The text appearance for the year (ex. 2014) in the selected date header.
- {@deprecated Use headerTextColor instead.}
+ {@deprecated Use headerTextColor instead.}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -7829,7 +7829,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int headerYearTextAppearance=0x01010498;
/** Makes the TextView be exactly this tall.
You could get the same effect by specifying this number in the
- layout parameters.
+ layout parameters.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -7840,7 +7840,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int height=0x01010155;
- /** Set true to hide the action bar on a vertical nested scroll of content.
+ /** Set true to hide the action bar on a vertical nested scroll of content.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7850,7 +7850,7 @@ containing a value of this type.
*/
public static final int hideOnContentScroll=0x01010443;
public static final int hideWheelUntilFocused=0x011600fb;
- /** Hint text to display when the text is empty.
+ /** Hint text to display when the text is empty.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7859,23 +7859,23 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int hint=0x01010150;
- /** Specifies a drawable to use for the 'home as up' indicator.
+ /** Specifies a drawable to use for the 'home as up' indicator.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int homeAsUpIndicator=0x0101030b;
- /** Specifies a layout to use for the "home" section of the action bar.
+ /** Specifies a layout to use for the "home" section of the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int homeLayout=0x0101031d;
- /** Default horizontal divider between rows of menu items.
+ /** Default horizontal divider between rows of menu items.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int horizontalDivider=0x0101012d;
/** Default horizontal gap between keys.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -7891,12 +7891,12 @@ containing a value of this type.
@Deprecated
public static final int horizontalGap=0x0101023f;
public static final int horizontalProgressLayout=0x0116009f;
- /** Default HorizontalScrollView style.
+ /** Default HorizontalScrollView style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int horizontalScrollViewStyle=0x01010353;
- /** Defines the default horizontal spacing between columns.
+ /** Defines the default horizontal spacing between columns.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -7912,7 +7912,7 @@ containing a value of this type.
IntentFilter.addDataAuthority()}.
Note: host name matching in the Android framework is
case-sensitive, unlike the formal RFC. As a result,
- host names here should always use lower case letters.
+ host names here should always use lower case letters.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7921,7 +7921,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int host=0x01010028;
- /** X coordinate of the icon hot spot.
+ /** X coordinate of the icon hot spot.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -7932,7 +7932,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int hotSpotX=0x01010517;
- /** Y coordinate of the icon hot spot.
+ /** Y coordinate of the icon hot spot.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -7943,9 +7943,9 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int hotSpotY=0x01010518;
- /** @hide
+ /** @hide
The service that provides {@link android.service.voice.HotwordDetectionService}.
- Expect a component name to be provided. @hide
+ Expect a component name to be provided. @hide
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -7956,14 +7956,14 @@ containing a value of this type.
@android.annotation.SystemApi
public static final int hotwordDetectionService=0x01010626;
/** Html description of the accessibility service usage, availability, or limitations (e.g.
- isn't supported by all apps).
+ isn't supported by all apps).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int htmlDescription=0x0101060b;
- /** Frequency of automatic hyphenation.
+ /** Frequency of automatic hyphenation.
Must be one of the following constant values.
@@ -7995,13 +7995,13 @@ or to a theme attribute in the form "?[package:][type:]na
The given icon will be used to display to the user a graphical
representation of its associated component; for example, as the icon
for main activity that is displayed in the launcher. This must be
- a reference to a Drawable resource containing the image definition.
+ a reference to a Drawable resource containing the image definition.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int icon=0x01010002;
/** The icon to show in the popup preview.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -8009,7 +8009,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int iconPreview=0x01010249;
/** Whether the space for the preference icon view will be reserved. By default, preference
icon view visibility will be set to GONE when there is no icon provided, so the default
- value of this attribute is false.
+ value of this attribute is false.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8018,7 +8018,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int iconSpaceReserved=0x01010561;
- /** Tint to apply to the icon.
+ /** Tint to apply to the icon.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -8028,7 +8028,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int iconTint=0x0101055e;
- /** Blending mode used to apply the icon tint.
+ /** Blending mode used to apply the icon tint.
Must be one of the following constant values.
@@ -8052,7 +8052,7 @@ containing a value of this type.
public static final int iconfactoryBadgeSize=0x01160188;
public static final int iconfactoryIconSize=0x01160187;
/** The default state of the SearchView. If true, it will be iconified when not in
- use and expanded when clicked.
+ use and expanded when clicked.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8069,13 +8069,13 @@ containing a value of this type.
@+
syntax to create a new ID resources.
For example: android:id="@+id/my_id"
which
allows you to later retrieve the view
- with findViewById(R.id.my_id)
.
+ with findViewById(R.id.my_id)
.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int id=0x010100d0;
/** The identifier to assign to the intent, as per
- {@link android.content.Intent#setIdentifier Intent.setIdentifier()}.
+ {@link android.content.Intent#setIdentifier Intent.setIdentifier()}.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8084,25 +8084,25 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int identifier=0x01010606;
- /** Indicates what view should not be affected by gravity.
+ /** Indicates what view should not be affected by gravity.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int ignoreGravity=0x010101ff;
public static final int ignoreOffsetTopLimit=0x0116016e;
- /** The style resource to use for an ImageButton.
+ /** The style resource to use for an ImageButton.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int imageButtonStyle=0x01010072;
- /** The style resource to use for an ImageButton that is an image well.
+ /** The style resource to use for an ImageButton that is an image well.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int imageWellStyle=0x01010073;
/** Supply a value for
{@link android.view.inputmethod.EditorInfo#actionId EditorInfo.actionId}
- used when an input method is connected to the text view.
+ used when an input method is connected to the text view.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8113,7 +8113,7 @@ containing a value of this type.
public static final int imeActionId=0x01010266;
/** Supply a value for
{@link android.view.inputmethod.EditorInfo#actionLabel EditorInfo.actionLabel}
- used when an input method is connected to the text view.
+ used when an input method is connected to the text view.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8123,13 +8123,13 @@ containing a value of this type.
*/
public static final int imeActionLabel=0x01010265;
/** Animation to use when showing the fullscreen extract UI after
- it had previously been hidden.
+ it had previously been hidden.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int imeExtractEnterAnimation=0x01010268;
/** Animation to use when hiding the fullscreen extract UI after
- it had previously been shown.
+ it had previously been shown.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -8149,7 +8149,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** Additional features you can enable in an IME associated with an editor
to improve the integration with your application. The constants
here correspond to those defined by
- {@link android.view.inputmethod.EditorInfo#imeOptions}.
+ {@link android.view.inputmethod.EditorInfo#imeOptions}.
Must be one or more (separated by '|') of the following constant values.
@@ -8279,7 +8279,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int imeOptions=0x01010264;
/** The extra value of the subtype. This string can be any string and will be passed to
- the IME when the framework calls the IME with the subtype.
+ the IME when the framework calls the IME with the subtype.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8291,7 +8291,7 @@ containing a value of this type.
/** The locale of the subtype. This string should be a locale (for example en_US and fr_FR)
and will be passed to the IME when the framework calls the IME
with the subtype. This is also used by the framework to know the supported locales
- of the IME.
+ of the IME.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8303,7 +8303,7 @@ containing a value of this type.
/** The mode of the subtype. This string can be a mode (for example, voice and keyboard)
and this string will be passed to the IME when the framework calls the IME with the
subtype. {@link android.view.inputmethod.InputMethodSubtype#getLocale()} returns the
- value specified in this attribute.
+ value specified in this attribute.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8313,7 +8313,7 @@ containing a value of this type.
*/
public static final int imeSubtypeMode=0x010102ed;
/** Flag declaring this activity to be 'immersive'; immersive activities
- should not be interrupted with other activities or notifications.
+ should not be interrupted with other activities or notifications.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8326,7 +8326,7 @@ containing a value of this type.
If it is important, the view fires accessibility events and is
reported to accessibility services that query the screen. Note:
While not recommended, an accessibility service may decide to
- ignore this attribute and operate on all views in the view tree.
+ ignore this attribute and operate on all views in the view tree.
May be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8349,7 +8349,7 @@ containing a value of this type.
*/
public static final int importantForAccessibility=0x010103aa;
/** Hints the Android System whether the view node associated with this View should be
- included in a view structure used for autofill purposes.
+ included in a view structure used for autofill purposes.
Must be one or more (separated by '|') of the following constant values.
@@ -8369,7 +8369,7 @@ containing a value of this type.
*/
public static final int importantForAutofill=0x01010558;
/** Hints the Android System whether the view node associated with this View should be
- use for content capture purposes.
+ use for content capture purposes.
Must be one or more (separated by '|') of the following constant values.
@@ -8388,13 +8388,13 @@ containing a value of this type.
*/
public static final int importantForContentCapture=0x01010607;
- /** Identifier for the animation to use when a view is shown.
+ /** Identifier for the animation to use when a view is shown.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int inAnimation=0x01010177;
/** Leave enough room for ascenders and descenders instead of
- using the font ascent and descent strictly. (Normally true).
+ using the font ascent and descent strictly. (Normally true).
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8405,7 +8405,7 @@ containing a value of this type.
public static final int includeFontPadding=0x0101015f;
/** If provided and true
, this searchable activity will be
included in any global lists of search targets.
- The default value is false
. Optional attribute..
+ The default value is false
. Optional attribute..
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8415,7 +8415,7 @@ containing a value of this type.
*/
public static final int includeInGlobalSearch=0x0101026e;
/** Allows to enable the indeterminate mode. In this mode the progress
- bar plays an infinite looping animation.
+ bar plays an infinite looping animation.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8426,7 +8426,7 @@ containing a value of this type.
public static final int indeterminate=0x01010139;
/** Defines how the indeterminate mode should behave when the progress reaches max. Only
affects the indeterminate animation if the indeterminate Drawable does not implement
- android.graphics.drawable.Animatable.
+ android.graphics.drawable.Animatable.
Must be one of the following constant values.
@@ -8446,7 +8446,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int indeterminateDrawable=0x0101013b;
/** Duration of the indeterminate animation. Only affects the indeterminate animation
if the indeterminate Drawable does not implement
- android.graphics.drawable.Animatable.
+ android.graphics.drawable.Animatable.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8455,7 +8455,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int indeterminateDuration=0x0101013d;
- /** Restricts to ONLY indeterminate mode (state-keeping progress mode will not work).
+ /** Restricts to ONLY indeterminate mode (state-keeping progress mode will not work).
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8464,12 +8464,12 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int indeterminateOnly=0x0101013a;
- /** Specifies a style resource to use for an indeterminate progress spinner.
+ /** Specifies a style resource to use for an indeterminate progress spinner.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int indeterminateProgressStyle=0x01010318;
- /** Tint to apply to the indeterminate progress indicator.
+ /** Tint to apply to the indeterminate progress indicator.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -8479,7 +8479,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int indeterminateTint=0x01010469;
- /** Blending mode used to apply the indeterminate progress indicator tint.
+ /** Blending mode used to apply the indeterminate progress indicator tint.
Must be one of the following constant values.
@@ -8501,7 +8501,7 @@ containing a value of this type.
*/
public static final int indeterminateTintMode=0x0101046a;
/** The end bound for an item's indicator. To specify a right bound specific to children,
- use childIndicatorEnd.
+ use childIndicatorEnd.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -8513,7 +8513,7 @@ containing a value of this type.
*/
public static final int indicatorEnd=0x010103d2;
/** The left bound for an item's indicator. To specify a left bound specific to children,
- use childIndicatorLeft.
+ use childIndicatorLeft.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -8525,7 +8525,7 @@ containing a value of this type.
*/
public static final int indicatorLeft=0x0101010d;
/** The right bound for an item's indicator. To specify a right bound specific to children,
- use childIndicatorRight.
+ use childIndicatorRight.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -8537,7 +8537,7 @@ containing a value of this type.
*/
public static final int indicatorRight=0x0101010e;
/** The start bound for an item's indicator. To specify a start bound specific to children,
- use childIndicatorStart.
+ use childIndicatorStart.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -8548,7 +8548,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int indicatorStart=0x010103d1;
- /** Overrides the id of the inflated View with this value.
+ /** Overrides the id of the inflated View with this value.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -8561,7 +8561,7 @@ or to a theme attribute in the form "?[package:][type:]na
lock screen. A use case for this is permission dialogs, that should only be visible on
the lock screen if their requesting activity is also visible.
- The default value of this attribute is false
.
+
The default value of this attribute is false
.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8575,7 +8575,7 @@ containing a value of this type.
you have providers with dependencies between each other, to make
sure that they are created in the order needed by those dependencies.
The value is a simple integer, with higher numbers being
- initialized first.
+ initialized first.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8591,17 +8591,17 @@ containing a value of this type.
*/
public static final int initOrder=0x0101001a;
public static final int initialActivityCount=0x01160118;
- /** A resource id of a layout.
+ /** A resource id of a layout.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int initialKeyguardLayout=0x010103c2;
- /** A resource id of a layout.
+ /** A resource id of a layout.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int initialLayout=0x01010251;
- /** Inner radius of the ring. When defined, innerRadiusRatio is ignored.
+ /** Inner radius of the ring. When defined, innerRadiusRatio is ignored.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -8614,7 +8614,7 @@ containing a value of this type.
public static final int innerRadius=0x0101025f;
/** Inner radius of the ring expressed as a ratio of the ring's width. For instance,
if innerRadiusRatio=9, then the inner radius equals the ring's width divided by 9.
- This value is ignored if innerRadius is defined. Default value is 9.
+ This value is ignored if innerRadius is defined. Default value is 9.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8625,7 +8625,7 @@ containing a value of this type.
public static final int innerRadiusRatio=0x0101019b;
/** If set, specifies that this TextView should use the specified
input method (specified by fully-qualified class name).
- {@deprecated Use inputType instead.}
+ {@deprecated Use inputType instead.}
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8641,7 +8641,7 @@ containing a value of this type.
{@link android.text.InputType}. Generally you can select
a single value, though some can be combined together as
indicated. Setting this attribute to anything besides
- none also implies that the text is editable.
+ none also implies that the text is editable.
Must be one or more (separated by '|') of the following constant values.
@@ -8825,7 +8825,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int insetTop=0x010101b9;
- /** The default install location defined by an application.
+ /** The default install location defined by an application.
Must be one of the following constant values.
@@ -8848,7 +8848,7 @@ containing a value of this type.
to return a suitable value for interactive controls.
This setting can be changed at runtime by calling
{@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
- android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}.
+ android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8879,7 +8879,7 @@ or to a theme attribute in the form "?[package:][type:]na
Note: If this flag is false, system will show a notification after a duration to
inform the user about the privacy implications of the service.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8891,7 +8891,7 @@ containing a value of this type.
/** Set to true to tell the SyncManager to automatically call setIsSyncable(..., ..., 1)
for the SyncAdapter instead of issuaing an initialization sync to the SyncAdapter.
Defaults to false.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8921,7 +8921,7 @@ containing a value of this type.
/** Set true if the subtype is auxiliary. An auxiliary subtype won't be shown in the
input method selection list in the settings app.
InputMethodManager#switchToLastInputMethod will ignore auxiliary subtypes when it
- chooses a target subtype.
+ chooses a target subtype.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8932,7 +8932,7 @@ containing a value of this type.
public static final int isAuxiliary=0x0101037f;
public static final int isCredential=0x011600ad;
/** Set to true in all of the configurations for which this input
- method should be considered an option as the default.
+ method should be considered an option as the default.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8947,7 +8947,7 @@ containing a value of this type.
for a particular 'feature' split. Only useful when the base APK specifies
android:isolatedSplits="true"
.
-
The default value of this attribute is false
.
+
The default value of this attribute is false
.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8959,7 +8959,7 @@ containing a value of this type.
/** A boolean flag used to indicate if an application is a Game or not.
This information can be used by the system to group together
applications that are classified as games, and display them separately
- from the other applications.
+ from the other applications.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8968,7 +8968,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int isGame=0x010103f4;
- /** Whether this rating bar is an indicator (and non-changeable by the user).
+ /** Whether this rating bar is an indicator (and non-changeable by the user).
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8977,7 +8977,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int isIndicator=0x01010147;
- /** Specifies that a theme has a light background with dark text on top.
+ /** Specifies that a theme has a light background with dark text on top.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8987,7 +8987,7 @@ containing a value of this type.
*/
public static final int isLightTheme=0x01010590;
/** Whether this is a modifier key such as Alt or Shift.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -8998,7 +8998,7 @@ containing a value of this type.
@Deprecated
public static final int isModifier=0x01010246;
/** Whether long-pressing on this key will make it repeat.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9012,7 +9012,7 @@ containing a value of this type.
that it can be resized to shrink its overall window so that there
will be space for an input method. If not set, the default
value will be true if "scrollbars" has the vertical scrollbar
- set, else it will be false.
+ set, else it will be false.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9021,10 +9021,10 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int isScrollContainer=0x0101024e;
- /** {@deprecated Use requiredSplitTypes instead.}
+ /** {@deprecated Use requiredSplitTypes instead.}
Flag to specify if this APK requires at least one split [either feature or
resource] to be present in order to function. Default value is false.
- @deprecated Use {@link android.R.attr#requiredSplitTypes} instead.
+ @deprecated Use {@link android.R.attr#requiredSplitTypes} instead.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9034,7 +9034,7 @@ containing a value of this type.
*/
@Deprecated
public static final int isSplitRequired=0x01010591;
- /** Whether the given RRO is static or not.
+ /** Whether the given RRO is static or not.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9044,7 +9044,7 @@ containing a value of this type.
*/
public static final int isStatic=0x0101055a;
/** Whether this is a toggle key.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9055,9 +9055,9 @@ containing a value of this type.
@Deprecated
public static final int isSticky=0x01010247;
public static final int isVirtualDeviceOnly=0x011600bb;
- /** @hide
+ /** @hide
Specifies if an IME can only be used while a device is in VR mode or on a dedicated
- device
+ device
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9069,7 +9069,7 @@ containing a value of this type.
public static final int isVrOnly=0x01010578;
/** If set to true, this service will run under a special process
that is isolated from the rest of the system. The only communication
- with it is through the Service API (binding and starting).
+ with it is through the Service API (binding and starting).
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9082,7 +9082,7 @@ containing a value of this type.
installed for this application should be loaded into their own Context
objects and not appear in the base application's Context.
-
The default value of this attribute is false
.
+
The default value of this attribute is false
.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9091,7 +9091,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int isolatedSplits=0x0101054b;
- /** Default background for each menu item.
+ /** Default background for each menu item.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -9099,7 +9099,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int itemBackground=0x01010130;
public static final int itemColor=0x01160167;
- /** Default disabled icon alpha for each menu item that shows an icon.
+ /** Default disabled icon alpha for each menu item that shows an icon.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9110,7 +9110,7 @@ containing a value of this type.
public static final int itemIconDisabledAlpha=0x01010131;
public static final int itemLayout=0x01160166;
/** Specifies padding that should be applied to the left and right sides of
- system-provided items in the bar.
+ system-provided items in the bar.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -9121,12 +9121,12 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int itemPadding=0x0101032d;
- /** Default appearance of menu item text.
+ /** Default appearance of menu item text.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int itemTextAppearance=0x0101012c;
- /** Mode for justification.
+ /** Mode for justification.
Must be one of the following constant values.
@@ -9135,14 +9135,14 @@ or to a theme attribute in the form "?[package:][type:]na
Constant | Value | Description |
none | 0 | No justification. |
inter_word | 1 | Justification by stretching word spacing. |
-inter_character | 2 | Justification by stretching letter spacing.
+ |
inter_character | 2 | Justification by stretching letter spacing.
@FlaggedApi("com.android.text.flags.inter_character_justification") |
*/
public static final int justificationMode=0x01010567;
public static final int keepDotActivated=0x01160126;
/** Controls whether the view's window should keep the screen on
- while visible.
+ while visible.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9151,7 +9151,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int keepScreenOn=0x01010216;
- /** The key to store the Preference value.
+ /** The key to store the Preference value.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9163,14 +9163,14 @@ containing a value of this type.
/** Image for the key. This image needs to be a StateListDrawable, with the following
possible states: normal, pressed, checkable, checkable+pressed, checkable+checked,
checkable+checked+pressed.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@Deprecated
public static final int keyBackground=0x01010233;
/** Key edge flags.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be one or more (separated by '|') of the following constant values.
@@ -9186,7 +9186,7 @@ or to a theme attribute in the form "?[package:][type:]na
@Deprecated
public static final int keyEdgeFlags=0x01010245;
/** Default height of a key, in pixels or percentage of display width.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -9202,14 +9202,14 @@ containing a value of this type.
@Deprecated
public static final int keyHeight=0x0101023e;
/** The icon to display on the key instead of the label.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@Deprecated
public static final int keyIcon=0x0101024c;
/** The label to display on the key.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9220,7 +9220,7 @@ containing a value of this type.
@Deprecated
public static final int keyLabel=0x0101024b;
/** The string of characters to output when this key is pressed.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9231,7 +9231,7 @@ containing a value of this type.
@Deprecated
public static final int keyOutputText=0x0101024a;
/** Height of the key press feedback popup.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -9244,14 +9244,14 @@ containing a value of this type.
@Deprecated
public static final int keyPreviewHeight=0x01010239;
/** Layout resource for key press feedback.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@Deprecated
public static final int keyPreviewLayout=0x01010237;
/** Vertical offset of the key press feedback from the key.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -9264,7 +9264,7 @@ containing a value of this type.
@Deprecated
public static final int keyPreviewOffset=0x01010238;
/** Groups signing keys into a {@code KeySet} for easier reference in
- other APIs. However, currently no APIs use this.
+ other APIs. However, currently no APIs use this.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
@@ -9282,7 +9282,7 @@ some parent container.
*/
public static final int keySet=0x010103db;
/** Color to use for the label in a key.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -9294,7 +9294,7 @@ containing a value of this type.
@Deprecated
public static final int keyTextColor=0x01010236;
/** Size of the text for character keys.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -9307,7 +9307,7 @@ containing a value of this type.
@Deprecated
public static final int keyTextSize=0x01010234;
/** Default width of a key, in pixels or percentage of display width.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -9322,7 +9322,7 @@ containing a value of this type.
*/
@Deprecated
public static final int keyWidth=0x0101023d;
- /** The key character map file resource.
+ /** The key character map file resource.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -9331,14 +9331,14 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int keyboardLocale=0x01160159;
/** Mode of the keyboard. If the mode doesn't match the
requested keyboard mode, the row will be skipped.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@Deprecated
public static final int keyboardMode=0x0101024d;
/** Whether this view is a root of a keyboard navigation cluster.
- See {@link android.view.View#setKeyboardNavigationCluster(boolean)}.
+ See {@link android.view.View#setKeyboardNavigationCluster(boolean)}.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9349,7 +9349,7 @@ containing a value of this type.
public static final int keyboardNavigationCluster=0x01010540;
public static final int keyboardViewStyle=0x0116011a;
/** This enum provides the same keycode values as can be found in
- {@link android.view.KeyEvent}.
+ {@link android.view.KeyEvent}.
Must be one of the following constant values.
@@ -9673,7 +9673,7 @@ containing a value of this type.
The default is true
, which means that after the application
has finished processing its data during a full-system restore, it will be
- terminated.
+ terminated.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9683,21 +9683,21 @@ containing a value of this type.
*/
public static final int killAfterRestore=0x0101029c;
public static final int knownActivityEmbeddingCerts=0x01160191;
- /**
+ /**
A reference to an array resource containing the signing certificate digests to be granted
this permission when using the {@code knownSigner} protection flag. The digest should
be computed over the DER encoding of the trusted certificate using the SHA-256 digest
algorithm.
If only a single signer is declared this can also be a string resource, or the digest
- can be declared inline as the value for this attribute.
+ can be declared inline as the value for this attribute.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
*/
public static final int knownCerts=0x0101062a;
- /** Perceptual luminance applied to the base color. From 0 to 100.
- Perceptual luminance of a color, in accessibility friendly color space. From 0 to 100.
+ /** Perceptual luminance applied to the base color. From 0 to 100.
+ Perceptual luminance of a color, in accessibility friendly color space. From 0 to 100.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9724,7 +9724,7 @@ containing a value of this type.
main activity that is displayed in the launcher. You should
generally set this to a reference to a string resource, so that
it can be localized, however it is also allowed to supply a plain
- string for quick and dirty programming.
+ string for quick and dirty programming.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
@@ -9736,13 +9736,13 @@ or to a theme attribute in the form "?[package:][type:]na
/** Specifies the id of a view for which this view serves as a label for
accessibility purposes. For example, a TextView before an EditText in
the UI usually specifies what information is contained in the EditText.
- Hence, the TextView is a label for the EditText.
+ Hence, the TextView is a label for the EditText.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int labelFor=0x010103c6;
/** Size of the text for custom keys with some text and no icon.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -9756,7 +9756,7 @@ containing a value of this type.
public static final int labelTextSize=0x01010235;
public static final int languageSettingsActivity=0x011600ba;
/** The BCP-47 Language Tag of the subtype. This replaces
- {@link android.R.styleable#InputMethod_Subtype_imeSubtypeLocale}.
+ {@link android.R.styleable#InputMethod_Subtype_imeSubtypeLocale}.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9770,7 +9770,7 @@ containing a value of this type.
created for the application. It only applies to the first
application loaded into a process; if using a sharedUserId
to allow multiple applications to use a process, they all must
- use this option consistently or will get unpredictable results.
+ use this option consistently or will get unpredictable results.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9787,7 +9787,7 @@ containing a value of this type.
are certainly possible. An application that does not support
large screens will be placed as a postage stamp on such a
screen, so that it retains the dimensions it was originally
- designed for.
+ designed for.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9805,7 +9805,7 @@ containing a value of this type.
application will be forced in to screen compatibility mode with
no way for the user to turn it off. Currently the compatibility mode only
emulates phone screens with a 320dp width, so compatibility mode is not applied if the
- value for largestWidthLimitDp is larger than 320.
+ value for largestWidthLimitDp is larger than 320.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -9815,7 +9815,7 @@ containing a value of this type.
*/
public static final int largestWidthLimitDp=0x01010366;
/** Distance from the bottom of the TextView to the last text baseline. If set, this
- overrides the value set for paddingBottom.
+ overrides the value set for paddingBottom.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -9837,7 +9837,7 @@ containing a value of this type.
{@link android.content.Intent} flags
{@link android.content.Intent#FLAG_ACTIVITY_SINGLE_TOP},
{@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK}, and
- {@link android.content.Intent#FLAG_ACTIVITY_MULTIPLE_TASK}.
+ {@link android.content.Intent#FLAG_ACTIVITY_MULTIPLE_TASK}.
Must be one of the following constant values.
@@ -9890,14 +9890,14 @@ containing a value of this type.
public static final int launchMode=0x0101001d;
/** When opening an activity in a new task using Intent.FLAG_ACTIVITY_LAUNCH_BEHIND,
this is the animation that is run on the activity of the old task (which is
- already on the screen and then stays on).
+ already on the screen and then stays on).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int launchTaskBehindSourceAnimation=0x01010492;
/** When opening an activity in a new task using Intent/FLAG_ACTIVITY_LAUNCH_BEHIND,
this is the animation that is run on the activity of the new task (which is
- entering the screen and then leaving).
+ entering the screen and then leaving).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -9923,13 +9923,13 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int layerType=0x01010354;
/** Supply an identifier for the layout resource to inflate when the ViewStub
becomes visible or when forced to do so. The layout resource must be a
- valid reference to a layout.
+ valid reference to a layout.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int layout=0x010100f2;
/** Defines the layout animation to use the first time the ViewGroup is laid out.
- Layout animations can also be started manually after the first layout.
+ Layout animations can also be started manually after the first layout.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -9938,7 +9938,7 @@ or to a theme attribute in the form "?[package:][type:]na
direction of the language script used. The possible values are "ltr" for Left-to-Right,
"rtl" for Right-to-Left, "locale", and "inherit" from parent view. If there is nothing
to inherit, "locale" is used. "locale" falls back to "en-US". "ltr" is the direction
- used in "en-US". The default for this attribute is "inherit".
+ used in "en-US". The default for this attribute is "inherit".
Must be one of the following constant values.
@@ -9953,7 +9953,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int layoutDirection=0x010103b2;
public static final int layoutManager=0x01160177;
- /** Defines the layout mode of this ViewGroup.
+ /** Defines the layout mode of this ViewGroup.
Must be one of the following constant values.
@@ -9966,36 +9966,36 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int layoutMode=0x010103da;
/** Positions the bottom edge of this view above the given anchor view ID.
- Accommodates bottom margin of this view and top margin of anchor view.
+ Accommodates bottom margin of this view and top margin of anchor view.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int layout_above=0x01010184;
- /** Positions the baseline of this view on the baseline of the given anchor view ID.
+ /** Positions the baseline of this view on the baseline of the given anchor view ID.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int layout_alignBaseline=0x01010186;
/** Makes the bottom edge of this view match the bottom edge of the given anchor view ID.
- Accommodates bottom margin.
+ Accommodates bottom margin.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int layout_alignBottom=0x0101018a;
/** Makes the end edge of this view match the end edge of the given anchor view ID.
- Accommodates end margin.
+ Accommodates end margin.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int layout_alignEnd=0x010103ba;
/** Makes the left edge of this view match the left edge of the given anchor view ID.
- Accommodates left margin.
+ Accommodates left margin.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int layout_alignLeft=0x01010187;
/** If true, makes the bottom edge of this view match the bottom edge of the parent.
- Accommodates bottom margin.
+ Accommodates bottom margin.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10005,7 +10005,7 @@ containing a value of this type.
*/
public static final int layout_alignParentBottom=0x0101018e;
/** If true, makes the end edge of this view match the end edge of the parent.
- Accommodates end margin.
+ Accommodates end margin.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10015,7 +10015,7 @@ containing a value of this type.
*/
public static final int layout_alignParentEnd=0x010103bc;
/** If true, makes the left edge of this view match the left edge of the parent.
- Accommodates left margin.
+ Accommodates left margin.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10025,7 +10025,7 @@ containing a value of this type.
*/
public static final int layout_alignParentLeft=0x0101018b;
/** If true, makes the right edge of this view match the right edge of the parent.
- Accommodates right margin.
+ Accommodates right margin.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10035,7 +10035,7 @@ containing a value of this type.
*/
public static final int layout_alignParentRight=0x0101018d;
/** If true, makes the start edge of this view match the start edge of the parent.
- Accommodates start margin.
+ Accommodates start margin.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10045,7 +10045,7 @@ containing a value of this type.
*/
public static final int layout_alignParentStart=0x010103bb;
/** If true, makes the top edge of this view match the top edge of the parent.
- Accommodates top margin.
+ Accommodates top margin.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10055,25 +10055,25 @@ containing a value of this type.
*/
public static final int layout_alignParentTop=0x0101018c;
/** Makes the right edge of this view match the right edge of the given anchor view ID.
- Accommodates right margin.
+ Accommodates right margin.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int layout_alignRight=0x01010189;
/** Makes the start edge of this view match the start edge of the given anchor view ID.
- Accommodates start margin.
+ Accommodates start margin.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int layout_alignStart=0x010103b9;
/** Makes the top edge of this view match the top edge of the given anchor view ID.
- Accommodates top margin.
+ Accommodates top margin.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int layout_alignTop=0x01010188;
/** If set to true, the parent will be used as the anchor when the anchor cannot be
- be found for layout_toLeftOf, layout_toRightOf, etc.
+ be found for layout_toLeftOf, layout_toRightOf, etc.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10084,12 +10084,12 @@ containing a value of this type.
public static final int layout_alignWithParentIfMissing=0x01010192;
public static final int layout_alwaysShow=0x01160170;
/** Positions the top edge of this view below the given anchor view ID.
- Accommodates top margin of this view and bottom margin of anchor view.
+ Accommodates top margin of this view and bottom margin of anchor view.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int layout_below=0x01010185;
- /** If true, centers this child horizontally within its parent.
+ /** If true, centers this child horizontally within its parent.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10098,7 +10098,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int layout_centerHorizontal=0x01010190;
- /** If true, centers this child horizontally and vertically within its parent.
+ /** If true, centers this child horizontally and vertically within its parent.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10107,7 +10107,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int layout_centerInParent=0x0101018f;
- /** If true, centers this child vertically within its parent.
+ /** If true, centers this child vertically within its parent.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10117,7 +10117,7 @@ containing a value of this type.
*/
public static final int layout_centerVertical=0x01010191;
public static final int layout_childType=0x01160165;
- /** The index of the column in which this child should be.
+ /** The index of the column in which this child should be.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10129,7 +10129,7 @@ containing a value of this type.
/** The column span: the difference between the right and left
boundaries delimiting the group of cells occupied by this view.
The default is one.
- See {@link android.widget.GridLayout.Spec}.
+ See {@link android.widget.GridLayout.Spec}.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10139,7 +10139,7 @@ containing a value of this type.
*/
public static final int layout_columnSpan=0x0101037d;
/** The relative proportion of horizontal space that should be allocated to this view
- during excess space distribution.
+ during excess space distribution.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10149,7 +10149,7 @@ containing a value of this type.
*/
public static final int layout_columnWeight=0x01010459;
/** Standard gravity constant that a child supplies to its parent.
- Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout.
+ Defines how the child view should be positioned, on both the X and Y axes, within its enclosing layout.
Must be one or more (separated by '|') of the following constant values.
@@ -10183,7 +10183,7 @@ containing a value of this type.
/** Specifies the basic height of the view. This is a required attribute
for any view inside of a containing layout manager. Its value may
be a dimension (such as "12dip") for a constant height or one of
- the special constants.
+ the special constants.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10214,7 +10214,7 @@ containing a value of this type.
layout_marginTop, and layout_marginBottom are
also specified, the layout_margin value will take precedence over the
edge-specific values. This space is outside this view's bounds.
- Margin values should be positive.
+ Margin values should be positive.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10273,7 +10273,7 @@ containing a value of this type.
public static final int layout_marginHorizontal=0x0101053b;
/** Specifies extra space on the left side of this view.
This space is outside this view's bounds.
- Margin values should be positive.
+ Margin values should be positive.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10346,7 +10346,7 @@ containing a value of this type.
public static final int layout_maxHeight=0x01160173;
public static final int layout_removeBorders=0x011600d7;
/** The row boundary delimiting the top of the group of cells
- occupied by this view.
+ occupied by this view.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10358,7 +10358,7 @@ containing a value of this type.
/** The row span: the difference between the top and bottom
boundaries delimiting the group of cells occupied by this view.
The default is one.
- See {@link android.widget.GridLayout.Spec}.
+ See {@link android.widget.GridLayout.Spec}.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10368,7 +10368,7 @@ containing a value of this type.
*/
public static final int layout_rowSpan=0x0101037c;
/** The relative proportion of vertical space that should be allocated to this view
- during excess space distribution.
+ during excess space distribution.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10395,25 +10395,25 @@ containing a value of this type.
*/
public static final int layout_span=0x0101014d;
/** Positions the start edge of this view to the end of the given anchor view ID.
- Accommodates start margin of this view and end margin of anchor view.
+ Accommodates start margin of this view and end margin of anchor view.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int layout_toEndOf=0x010103b8;
/** Positions the right edge of this view to the left of the given anchor view ID.
- Accommodates right margin of this view and left margin of anchor view.
+ Accommodates right margin of this view and left margin of anchor view.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int layout_toLeftOf=0x01010182;
/** Positions the left edge of this view to the right of the given anchor view ID.
- Accommodates left margin of this view and right margin of anchor view.
+ Accommodates left margin of this view and right margin of anchor view.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int layout_toRightOf=0x01010183;
/** Positions the end edge of this view to the start of the given anchor view ID.
- Accommodates end margin of this view and start margin of anchor view.
+ Accommodates end margin of this view and start margin of anchor view.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -10421,7 +10421,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** Indicates how much of the extra space in the LinearLayout is
allocated to the view associated with these LayoutParams. Specify
0 if the view should not be stretched. Otherwise the extra pixels
- will be pro-rated among all views whose weight is greater than 0.
+ will be pro-rated among all views whose weight is greater than 0.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10433,7 +10433,7 @@ containing a value of this type.
/** Specifies the basic width of the view. This is a required attribute
for any view inside of a containing layout manager. Its value may
be a dimension (such as "12dip") for a constant width or one of
- the special constants.
+ the special constants.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10477,7 +10477,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int layout_y=0x01010180;
- /** Amount of left padding inside the gradient shape.
+ /** Amount of left padding inside the gradient shape.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10490,7 +10490,7 @@ containing a value of this type.
public static final int left=0x010101ad;
public static final int leftToRight=0x01160164;
public static final int legacyLayout=0x011600fc;
- /** Text letter-spacing.
+ /** Text letter-spacing.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10499,7 +10499,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int letterSpacing=0x010104b6;
- /** Specifies the initial drawable level in the range 0 to 10000.
+ /** Specifies the initial drawable level in the range 0 to 10000.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10514,7 +10514,7 @@ containing a value of this type.
public static final int lineBreakStyle=0x011600e0;
public static final int lineBreakWordStyle=0x011600e1;
/** Explicit height between lines of text. If set, this will override the values set
- for lineSpacingExtra and lineSpacingMultiplier.
+ for lineSpacingExtra and lineSpacingMultiplier.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10526,7 +10526,7 @@ containing a value of this type.
*/
public static final int lineHeight=0x0101057f;
/** Extra spacing between lines of text. The value will not be applied for the last
- line of text.
+ line of text.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10547,7 +10547,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int lineSpacingMultiplier=0x01010218;
- /** Makes the TextView be exactly this many lines tall.
+ /** Makes the TextView be exactly this many lines tall.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10558,7 +10558,7 @@ containing a value of this type.
public static final int lines=0x01010154;
/** If set to false, keeps the movement method from being set
to the link movement method even if autoLink causes links
- to be found.
+ to be found.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10567,44 +10567,44 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int linksClickable=0x010100b1;
- /** Drawable used as a background for selected list items.
+ /** Drawable used as a background for selected list items.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int listChoiceBackgroundIndicator=0x010102f0;
- /** Drawable to use for multiple choice indicators.
+ /** Drawable to use for multiple choice indicators.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int listChoiceIndicatorMultiple=0x0101021a;
- /** Drawable to use for single choice indicators.
+ /** Drawable to use for single choice indicators.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int listChoiceIndicatorSingle=0x01010219;
- /** The drawable for the list divider.
+ /** The drawable for the list divider.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int listDivider=0x01010214;
- /** The list divider used in alert dialogs.
+ /** The list divider used in alert dialogs.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int listDividerAlertDialog=0x01010305;
public static final int listItemLayout=0x0116009d;
public static final int listLayout=0x0116009a;
- /** Default menu-style ListView style.
+ /** Default menu-style ListView style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int listMenuViewStyle=0x010104f2;
- /** Default ListPopupWindow style.
+ /** Default ListPopupWindow style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int listPopupWindowStyle=0x010102ff;
- /** The preferred list item height.
+ /** The preferred list item height.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10615,7 +10615,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int listPreferredItemHeight=0x0101004d;
- /** A larger, more robust list item height.
+ /** A larger, more robust list item height.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10626,7 +10626,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x01010386;
- /** A smaller, sleeker list item height.
+ /** A smaller, sleeker list item height.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10637,7 +10637,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int listPreferredItemHeightSmall=0x01010387;
- /** The preferred padding along the end edge of list items.
+ /** The preferred padding along the end edge of list items.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10648,7 +10648,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int listPreferredItemPaddingEnd=0x010103be;
- /** The preferred padding along the left edge of list items.
+ /** The preferred padding along the left edge of list items.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10659,7 +10659,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int listPreferredItemPaddingLeft=0x010103a3;
- /** The preferred padding along the right edge of list items.
+ /** The preferred padding along the right edge of list items.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10670,7 +10670,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int listPreferredItemPaddingRight=0x010103a4;
- /** The preferred padding along the start edge of list items.
+ /** The preferred padding along the start edge of list items.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10681,24 +10681,24 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int listPreferredItemPaddingStart=0x010103bd;
- /** Drawable used to indicate the currently selected item in the list.
+ /** Drawable used to indicate the currently selected item in the list.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int listSelector=0x010100fb;
- /** TextView style for list separators.
+ /** TextView style for list separators.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int listSeparatorTextViewStyle=0x01010208;
- /** Default ListView style.
+ /** Default ListView style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int listViewStyle=0x01010074;
- /** ListView with white background.
+ /** ListView with white background.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -10711,7 +10711,7 @@ or to a theme attribute in the form "?[package:][type:]na
While in lockTask mode with multiple permitted tasks running, each launched task is
permitted to finish, transitioning to the previous locked task, until there is only one
task remaining. At that point the last task running is not permitted to finish, unless it
- uses the value always.
+ uses the value always.
Must be one of the following constant values.
@@ -10765,13 +10765,13 @@ or to a theme attribute in the form "?[package:][type:]na
header in the Action Bar. The primary differences between an icon
and a logo are that logos are often wider and more detailed, and are
used without an accompanying text caption. This must be a reference
- to a Drawable resource containing the image definition.
+ to a Drawable resource containing the image definition.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int logo=0x010102be;
/** A content description string to describe the appearance of the
- associated logo image.
+ associated logo image.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10780,7 +10780,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int logoDescription=0x010104e9;
- /** Defines whether this view reacts to long click events.
+ /** Defines whether this view reacts to long click events.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10790,7 +10790,7 @@ containing a value of this type.
*/
public static final int longClickable=0x010100e6;
/** Defines whether the animator loops to the first view once it
- has reached the end of the list.
+ has reached the end of the list.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10816,7 +10816,7 @@ containing a value of this type.
behavior for managing space for various scenarios like out of memory
conditions. This is an optional attribute and
applications can choose not to specify a default activity to
- manage space.
+ manage space.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10825,13 +10825,13 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int manageSpaceActivity=0x01010004;
- /** Default MapView style.
+ /** Default MapView style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int mapViewStyle=0x0101008a;
/** The number of times to repeat the marquee animation. Only applied if the
- TextView has marquee enabled.
+ TextView has marquee enabled.
May be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10855,7 +10855,7 @@ containing a value of this type.
{@link android.transition.Transition#MATCH_ITEM_ID},
{@link android.transition.Transition#MATCH_NAME}, and
{@link android.transition.Transition#MATCH_INSTANCE}, respectively.
- This corresponds to {@link android.transition.Transition#setMatchOrder(int...)}.
+ This corresponds to {@link android.transition.Transition#setMatchOrder(int...)}.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10909,7 +10909,7 @@ containing a value of this type.
public static final int materialColorTertiaryContainer=0x01160064;
public static final int materialColorTertiaryFixed=0x01160065;
public static final int materialColorTertiaryFixedDim=0x0116005a;
- /** Defines the maximum value.
+ /** Defines the maximum value.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10933,7 +10933,7 @@ containing a value of this type.
Device compatibility mode.
-
+
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10954,7 +10954,7 @@ containing a value of this type.
public static final int maxButtonHeight=0x010104fd;
public static final int maxCollapsedHeight=0x0116016b;
public static final int maxCollapsedHeightSmall=0x0116016c;
- /** The maximal date shown by this calendar view in mm/dd/yyyy format.
+ /** The maximal date shown by this calendar view in mm/dd/yyyy format.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10965,7 +10965,7 @@ containing a value of this type.
public static final int maxDate=0x01010340;
public static final int maxDrawableHeight=0x0116018b;
public static final int maxDrawableWidth=0x0116018a;
- /** Makes the TextView be at most this many ems wide.
+ /** Makes the TextView be at most this many ems wide.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10976,7 +10976,7 @@ containing a value of this type.
public static final int maxEms=0x01010157;
public static final int maxFileSize=0x01160153;
/** An optional argument to supply a maximum height for this view.
- See {see android.widget.ImageView#setMaxHeight} for details.
+ See {see android.widget.ImageView#setMaxHeight} for details.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -10988,7 +10988,7 @@ containing a value of this type.
*/
public static final int maxHeight=0x01010120;
public static final int maxItems=0x011600d9;
- /** Defines the maximum number of items per row.
+ /** Defines the maximum number of items per row.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -10998,7 +10998,7 @@ containing a value of this type.
*/
public static final int maxItemsPerRow=0x01010134;
/** Set an input filter to constrain the text length to the
- specified number.
+ specified number.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11007,7 +11007,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int maxLength=0x01010160;
- /** The maximum level allowed for this item.
+ /** The maximum level allowed for this item.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11019,7 +11019,7 @@ containing a value of this type.
/** Makes the TextView be at most this many lines tall.
When used on an editable text, the inputType
attribute's value must be
- combined with the textMultiLine
flag for the maxLines attribute to apply.
+ combined with the textMultiLine
flag for the maxLines attribute to apply.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11031,7 +11031,7 @@ containing a value of this type.
/** The max version code of the package for which compatibility mode is
requested. This corresponds to the long value returned by {@link
android.content.pm.PackageInfo#getLongVersionCode()} for the target package.
-
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11043,7 +11043,7 @@ containing a value of this type.
/** The maximum number of entries of tasks rooted at this activity in the recent task list.
When this number of entries is reached the least recently used instance of this activity
will be removed from recents. The value will be clamped between 1 and 100 inclusive.
- The default value for this if it is not specified is 15.
+ The default value for this if it is not specified is 15.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11052,7 +11052,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int maxRecents=0x01010446;
- /** Maximum height that the AppWidget can be resized to.
+ /** Maximum height that the AppWidget can be resized to.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -11063,7 +11063,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int maxResizeHeight=0x01010633;
- /** Maximum width that the AppWidget can be resized to.
+ /** Maximum width that the AppWidget can be resized to.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -11074,7 +11074,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int maxResizeWidth=0x01010632;
- /** Defines the maximum number of rows displayed.
+ /** Defines the maximum number of rows displayed.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11086,7 +11086,7 @@ containing a value of this type.
/** Optional: specify the maximum version of the Android OS for which the
application wishes to request the permission. When running on a version
of Android higher than the number given here, the permission will not
- be requested.
+ be requested.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11096,7 +11096,7 @@ containing a value of this type.
*/
public static final int maxSdkVersion=0x01010271;
/** An optional argument to supply a maximum width for this view.
- See {see android.widget.ImageView#setMaxWidth} for details.
+ See {see android.widget.ImageView#setMaxWidth} for details.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -11107,7 +11107,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int maxWidth=0x0101011f;
- /** The maximum arc angle in degrees between the start and end points.
+ /** The maximum arc angle in degrees between the start and end points.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11117,7 +11117,7 @@ containing a value of this type.
*/
public static final int maximumAngle=0x0101047f;
/** Determines whether to measure all children or just those in
- the VISIBLE or INVISIBLE state when measuring. Defaults to false.
+ the VISIBLE or INVISIBLE state when measuring. Defaults to false.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11128,7 +11128,7 @@ containing a value of this type.
public static final int measureAllChildren=0x0101010a;
/** When set to true, all children with a weight will be considered having
the minimum size of the largest child. If false, all children are
- measured normally.
+ measured normally.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11137,13 +11137,13 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int measureWithLargestChild=0x010102d4;
- /** Default style for the MediaRouteButton widget.
+ /** Default style for the MediaRouteButton widget.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int mediaRouteButtonStyle=0x010103ad;
/** The types of media routes the button and its resulting
- chooser will filter by.
+ chooser will filter by.
May be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11174,7 +11174,7 @@ containing a value of this type.
This attribute can be applied to a
{@link android.R.styleable#AndroidManifestProcess process} tag, or to an
{@link android.R.styleable#AndroidManifestApplication application} tag (to supply
- a default setting for all application components).
+ a default setting for all application components).
Must be one of the following constant values.
@@ -11188,7 +11188,7 @@ containing a value of this type.
*/
public static final int memtagMode=0x01010624;
/** The category applied to all items within this group.
- (This will be or'ed with the orderInCategory attribute.)
+ (This will be or'ed with the orderInCategory attribute.)
Must be one of the following constant values.
@@ -11203,7 +11203,7 @@ containing a value of this type.
*/
public static final int menuCategory=0x010101de;
/** Specify a group of MIME types that are handled. MIME types can be added and
- removed to a package's MIME group via the PackageManager.
+ removed to a package's MIME group via the PackageManager.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11217,7 +11217,7 @@ containing a value of this type.
IntentFilter.addDataType()}.
Note: MIME type matching in the Android framework is
case-sensitive, unlike formal RFC MIME types. As a result,
- MIME types here should always use lower case letters.
+ MIME types here should always use lower case letters.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11226,7 +11226,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int mimeType=0x01010026;
- /** Defines the minimum value.
+ /** Defines the minimum value.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11250,7 +11250,7 @@ containing a value of this type.
Device compatibility mode.
-
+
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11259,7 +11259,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int minAspectRatio=0x0101059b;
- /** The minimal date shown by this calendar view in mm/dd/yyyy format.
+ /** The minimal date shown by this calendar view in mm/dd/yyyy format.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11268,7 +11268,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int minDate=0x0101033f;
- /** Makes the TextView be at least this many ems wide.
+ /** Makes the TextView be at least this many ems wide.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11277,7 +11277,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int minEms=0x0101015a;
- /** @hide
+ /** @hide
The minimum version of the extension SDK this application requires.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
@@ -11298,7 +11298,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int minHeight=0x01010140;
- /** The minimum level allowed for this item.
+ /** The minimum level allowed for this item.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11310,7 +11310,7 @@ containing a value of this type.
/** Makes the TextView be at least this many lines tall.
When used on an editable text, the inputType
attribute's value must be
- combined with the textMultiLine
flag for the minLines attribute to apply.
+ combined with the textMultiLine
flag for the minLines attribute to apply.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11319,7 +11319,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int minLines=0x01010156;
- /** Minimum height that the AppWidget can be resized to.
+ /** Minimum height that the AppWidget can be resized to.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -11330,7 +11330,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int minResizeHeight=0x01010396;
- /** Minimum width that the AppWidget can be resized to.
+ /** Minimum width that the AppWidget can be resized to.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -11344,7 +11344,7 @@ containing a value of this type.
/** Optional: specify the minimum version of the Android OS for which the
application wishes to request the permission. When running on a version
of Android lower than the number given here, the permission will not
- be requested.
+ be requested.
May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
May be an integer value, such as "100
".
This may also be a reference to a resource (in the form
@@ -11372,7 +11372,7 @@ containing a value of this type.
*/
public static final int minWidth=0x0101013f;
/** The minimum arc angle in degrees between the start and end points when
- they are close to horizontal.
+ they are close to horizontal.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11382,7 +11382,7 @@ containing a value of this type.
*/
public static final int minimumHorizontalAngle=0x0101047d;
/** The minimum arc angle in degrees between the start and end points when
- they are close to vertical.
+ they are close to vertical.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11395,7 +11395,7 @@ containing a value of this type.
public static final int minorWeightMin=0x011600ed;
/** Enables or disables the mipmap hint. See
{@link android.graphics.Bitmap#setHasMipMap(boolean)} for more information.
- Default value is false.
+ Default value is false.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11405,7 +11405,7 @@ containing a value of this type.
*/
public static final int mipMap=0x010103cd;
/** Defines if the associated drawables need to be mirrored when in RTL mode.
- Default is false.
+ Default is false.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11428,7 +11428,7 @@ containing a value of this type.
*/
public static final int mode=0x0101017e;
public static final int monthTextAppearance=0x011600f0;
- /** 'More' icon.
+ /** 'More' icon.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -11443,7 +11443,7 @@ or to a theme attribute in the form "?[package:][type:]na
The system might treat such applications specially, for eg., by
extracting the application's native libraries for all supported instruction
sets or by compiling the application's dex code for all supported instruction
- sets.
+ sets.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11463,7 +11463,7 @@ containing a value of this type.
instances wherever they are used (provided permissions allow it).
This is most often used with content providers, so that instances
of a provider can be created in each client process, allowing them
- to be used without performing IPC.
+ to be used without performing IPC.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11474,7 +11474,7 @@ containing a value of this type.
public static final int multiprocess=0x01010013;
/** A unique name for the given item. This must use a Java-style naming
convention to ensure the name is unique, for example
- "com.mycompany.MyName".
+ "com.mycompany.MyName".
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11490,7 +11490,7 @@ containing a value of this type.
*/
public static final int name=0x01010003;
/** If {@code true} enables automatic zero initialization of all native heap
- allocations.
+ allocations.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11517,7 +11517,7 @@ containing a value of this type.
this attribute is ignored.
@deprecated Draw proper background behind
{@link android.view.WindowInsets.Type#navigationBars()} or
- {@link android.view.WindowInsets.Type#tappableElement()} instead.
+ {@link android.view.WindowInsets.Type#tappableElement()} instead.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -11540,7 +11540,7 @@ containing a value of this type.
this attribute is ignored.
@deprecated Draw proper background behind
{@link android.view.WindowInsets.Type#navigationBars()} or
- {@link android.view.WindowInsets.Type#tappableElement()} instead.
+ {@link android.view.WindowInsets.Type#tappableElement()} instead.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -11553,7 +11553,7 @@ containing a value of this type.
public static final int navigationBarDividerColor=0x0101056d;
public static final int navigationButtonStyle=0x01160168;
/** Text to set as the content description for the navigation button
- located at the start of the toolbar.
+ located at the start of the toolbar.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11563,12 +11563,12 @@ containing a value of this type.
*/
public static final int navigationContentDescription=0x010104c1;
/** Icon drawable to use for the navigation button located at
- the start of the toolbar.
+ the start of the toolbar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int navigationIcon=0x010104c0;
- /** The type of navigation to use.
+ /** The type of navigation to use.
Must be one of the following constant values.
@@ -11582,7 +11582,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int navigationMode=0x010102cf;
public static final int needsDefaultBackgrounds=0x011600a1;
- /** The negative button text for the dialog. Set to @null to hide the negative button.
+ /** The negative button text for the dialog. Set to @null to hide the negative button.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11592,7 +11592,7 @@ containing a value of this type.
*/
public static final int negativeButtonText=0x010101f6;
/** Specifies that this view should permit nested scrolling within a compatible
- ancestor view.
+ ancestor view.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11601,7 +11601,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int nestedScrollingEnabled=0x01010436;
- /** An XML resource with the application's Network Security Config.
+ /** An XML resource with the application's Network Security Config.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -11668,7 +11668,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** Specify whether an activity should be kept in its history stack.
If this attribute is set, then as soon as the user navigates away
from the activity it will be finished and they will no longer be
- able to return to it.
+ able to return to it.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11683,7 +11683,7 @@ containing a value of this type.
to return a suitable value for UIs that do not include interactive controls.
This setting can be changed at runtime by calling
{@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
- android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}.
+ android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11696,7 +11696,7 @@ containing a value of this type.
form-factors. Traditionally this is an HVGA normal density
screen, but WQVGA low density and WVGA high density are also
considered to be normal. This attribute is true by default,
- and applications currently should leave it that way.
+ and applications currently should leave it that way.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11712,7 +11712,7 @@ containing a value of this type.
/** The minimal period in milliseconds between two accessibility events of the same type
are sent to this service. This setting can be changed at runtime by calling
{@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
- android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}.
+ android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11721,7 +11721,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int notificationTimeout=0x01010383;
- /** Defines how many columns to show.
+ /** Defines how many columns to show.
May be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11739,7 +11739,7 @@ containing a value of this type.
*/
public static final int numColumns=0x01010118;
public static final int numDots=0x01160162;
- /** The number of stars (or rating items) to show.
+ /** The number of stars (or rating items) to show.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11748,12 +11748,12 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int numStars=0x01010144;
- /** NumberPicker style.
+ /** NumberPicker style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int numberPickerStyle=0x01010524;
- /** The background color for the hours/minutes numbers.
+ /** The background color for the hours/minutes numbers.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -11775,7 +11775,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int numbersInnerTextColor=0x010104e1;
- /** The color for the hours/minutes selector.
+ /** The color for the hours/minutes selector.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -11799,7 +11799,7 @@ containing a value of this type.
public static final int numbersTextColor=0x010104a1;
/** If set, specifies that this TextView has a numeric input method.
The default is false.
- {@deprecated Use inputType instead.}
+ {@deprecated Use inputType instead.}
Must be one or more (separated by '|') of the following constant values.
@@ -11814,7 +11814,7 @@ containing a value of this type.
@Deprecated
public static final int numeric=0x01010165;
/** The numeric modifier key. This is the modifier when using a numeric (for example,
- 12-key) keyboard. The values should be kept in sync with KeyEvent
+ 12-key) keyboard. The values should be kept in sync with KeyEvent
Must be one or more (separated by '|') of the following constant values.
@@ -11831,7 +11831,7 @@ containing a value of this type.
*/
public static final int numericModifiers=0x0101054f;
/** The numeric shortcut key. This is the shortcut when using a numeric (for example,
- 12-key) keyboard.
+ 12-key) keyboard.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11841,7 +11841,7 @@ containing a value of this type.
*/
public static final int numericShortcut=0x010101e4;
/** The offset (or ratio) of this current color item inside the gradient.
- The value is only meaningful when it is between 0 and 1.
+ The value is only meaningful when it is between 0 and 1.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11871,7 +11871,7 @@ containing a value of this type.
public static final int onClick=0x0101026f;
/** If true, the animation will only run a single time and then
stop. If false (the default), it will continually run,
- restarting at the first frame after the last has finished.
+ restarting at the first frame after the last has finished.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11882,7 +11882,7 @@ containing a value of this type.
public static final int oneshot=0x01010197;
/** Indicates the opacity of the layer. This can be useful to allow the
system to enable drawing optimizations. The default value is
- translucent.
+ translucent.
Must be one of the following constant values.
@@ -11897,7 +11897,7 @@ containing a value of this type.
*/
public static final int opacity=0x0101031e;
public static final int opacityListDivider=0x01160005;
- /** Bottom optical inset.
+ /** Bottom optical inset.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -11908,7 +11908,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int opticalInsetBottom=0x0101058b;
- /** Left optical inset.
+ /** Left optical inset.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -11919,7 +11919,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int opticalInsetLeft=0x01010588;
- /** Right optical inset.
+ /** Right optical inset.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -11930,7 +11930,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int opticalInsetRight=0x0101058a;
- /** Top optical inset.
+ /** Top optical inset.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -11943,7 +11943,7 @@ containing a value of this type.
public static final int opticalInsetTop=0x01010589;
public static final int optional=0x011601a3;
/** The order for the Preference (lower values are to be ordered first). If this is not
- specified, the default ordering will be alphabetic.
+ specified, the default ordering will be alphabetic.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11953,7 +11953,7 @@ containing a value of this type.
*/
public static final int order=0x010101ea;
/** The order within the category applied to all items within this group.
- (This will be or'ed with the category attribute.)
+ (This will be or'ed with the category attribute.)
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11962,7 +11962,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int orderInCategory=0x010101df;
- /** Name of the property being animated.
+ /** Name of the property being animated.
Must be one of the following constant values.
@@ -11976,7 +11976,7 @@ containing a value of this type.
public static final int ordering=0x010102e2;
/** Whether to order the Preference under this group as they appear in the XML file.
If this is false, the ordering will follow the Preference order attribute and
- default to alphabetic for those without the order attribute.
+ default to alphabetic for those without the order attribute.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -11985,7 +11985,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int orderingFromXml=0x010101e7;
- /** Standard orientation constant.
+ /** Standard orientation constant.
Must be one of the following constant values.
@@ -11997,7 +11997,7 @@ containing a value of this type.
*/
public static final int orientation=0x010100c4;
- /** Identifier for the animation to use when a view is hidden.
+ /** Identifier for the animation to use when a view is hidden.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -12010,7 +12010,7 @@ or to a theme attribute in the form "?[package:][type:]na
The opacity of the final ambient shadow is a function of the shadow caster height,
the alpha channel of the outlineAmbientShadowColor (typically opaque), and the
- {@link android.R.attr#ambientShadowAlpha} theme attribute.
+ {@link android.R.attr#ambientShadowAlpha} theme attribute.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -12020,7 +12020,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int outlineAmbientShadowColor=0x01010582;
- /** ViewOutlineProvider used to determine the View's Outline.
+ /** ViewOutlineProvider used to determine the View's Outline.
Must be one of the following constant values.
@@ -12042,7 +12042,7 @@ containing a value of this type.
The opacity of the final spot shadow is a function of the shadow caster height, the
alpha channel of the outlineSpotShadowColor (typically opaque), and the
- {@link android.R.attr#spotShadowAlpha} theme attribute.
+ {@link android.R.attr#spotShadowAlpha} theme attribute.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -12052,14 +12052,14 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int outlineSpotShadowColor=0x01010581;
- /** Drawable to draw below list content.
+ /** Drawable to draw below list content.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int overScrollFooter=0x010102c3;
- /** Drawable to draw above list content.
+ /** Drawable to draw above list content.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -12068,7 +12068,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int overScrollHeader=0x010102c2;
/** Defines over-scrolling behavior. This property is used only if the
View is scrollable. Over-scrolling is the ability for the user to
- receive feedback when attempting to scroll beyond meaningful content.
+ receive feedback when attempting to scroll beyond meaningful content.
Must be one of the following constant values.
@@ -12083,7 +12083,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int overScrollMode=0x010102c1;
- /** Whether the popup window should overlap its anchor view.
+ /** Whether the popup window should overlap its anchor view.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12094,7 +12094,7 @@ containing a value of this type.
public static final int overlapAnchor=0x01010462;
/** Set true when this subtype should be selected by default if no other subtypes are
selected explicitly. Note that a subtype with this parameter being true will
- not be shown in the subtypes list.
+ not be shown in the subtypes list.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12105,7 +12105,7 @@ containing a value of this type.
public static final int overridesImplicitlyEnabledSubtype=0x010103a2;
/** Comma separated package names from which this service would like to receive events (leave out for all packages).
{@link android.accessibilityservice.AccessibilityService#setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)
- android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}.
+ android.accessibilityservice.AccessibilityService.setServiceInfo(android.accessibilityservice.AccessibilityServiceInfo)}.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12117,7 +12117,7 @@ containing a value of this type.
/** Required type of association with the package, for example "android.package.ad_service"
if it provides an advertising service. This should use the standard scoped naming
convention as used for other things such as package names, based on the Java naming
- convention.
+ convention.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12134,7 +12134,7 @@ containing a value of this type.
will include its padding. If a {@link android.R.attr#background}
is provided, the padding will initially be set to that (0 if the
drawable does not have padding). Explicitly setting a padding value
- will override the corresponding padding found in the background.
+ will override the corresponding padding found in the background.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -12145,7 +12145,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int padding=0x010100d5;
- /** Sets the padding, in pixels, of the bottom edge; see {@link android.R.attr#padding}.
+ /** Sets the padding, in pixels, of the bottom edge; see {@link android.R.attr#padding}.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -12157,7 +12157,7 @@ containing a value of this type.
*/
public static final int paddingBottom=0x010100d9;
public static final int paddingBottomNoButtons=0x011600c7;
- /** Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
+ /** Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -12170,7 +12170,7 @@ containing a value of this type.
public static final int paddingEnd=0x010103b4;
/** Sets the padding, in pixels, of the left and right edges; see
{@link android.R.attr#padding}. This value will take precedence over
- paddingLeft and paddingRight, but not paddingStart or paddingEnd (if set).
+ paddingLeft and paddingRight, but not paddingStart or paddingEnd (if set).
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -12181,7 +12181,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int paddingHorizontal=0x0101053d;
- /** Sets the padding, in pixels, of the left edge; see {@link android.R.attr#padding}.
+ /** Sets the padding, in pixels, of the left edge; see {@link android.R.attr#padding}.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -12193,7 +12193,7 @@ containing a value of this type.
*/
public static final int paddingLeft=0x010100d6;
/** Indicates how layer padding should affect the bounds of subsequent layers.
- The default padding mode value is nest.
+ The default padding mode value is nest.
Must be one of the following constant values.
@@ -12205,7 +12205,7 @@ containing a value of this type.
*/
public static final int paddingMode=0x01010457;
- /** Sets the padding, in pixels, of the right edge; see {@link android.R.attr#padding}.
+ /** Sets the padding, in pixels, of the right edge; see {@link android.R.attr#padding}.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -12216,7 +12216,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int paddingRight=0x010100d8;
- /** Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
+ /** Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -12227,7 +12227,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int paddingStart=0x010103b3;
- /** Sets the padding, in pixels, of the top edge; see {@link android.R.attr#padding}.
+ /** Sets the padding, in pixels, of the top edge; see {@link android.R.attr#padding}.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -12241,7 +12241,7 @@ containing a value of this type.
public static final int paddingTopNoTitle=0x011600c8;
/** Sets the padding, in pixels, of the top and bottom edges; see
{@link android.R.attr#padding}. This value will take precedence over
- paddingTop and paddingBottom, if set.
+ paddingTop and paddingBottom, if set.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -12253,28 +12253,28 @@ containing a value of this type.
*/
public static final int paddingVertical=0x0101053e;
public static final int pageSpacing=0x0116015e;
- /** The background of a panel when it is inset from the left and right edges of the screen.
+ /** The background of a panel when it is inset from the left and right edges of the screen.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int panelBackground=0x0101005e;
- /** Color that matches (as closely as possible) the panel background.
+ /** Color that matches (as closely as possible) the panel background.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int panelColorBackground=0x01010061;
- /** Default color of foreground panel imagery.
+ /** Default color of foreground panel imagery.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int panelColorForeground=0x01010060;
- /** The background of a panel when it extends to the left and right edges of the screen.
+ /** The background of a panel when it extends to the left and right edges of the screen.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -12284,12 +12284,12 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int panelMenuIsCompact=0x0116001c;
public static final int panelMenuListTheme=0x0116001e;
public static final int panelMenuListWidth=0x0116001d;
- /** Default appearance of panel text.
+ /** Default appearance of panel text.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int panelTextAppearance=0x01010062;
- /** The name of the logical parent of the activity as it appears in the manifest.
+ /** The name of the logical parent of the activity as it appears in the manifest.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12300,7 +12300,7 @@ containing a value of this type.
public static final int parentActivityName=0x010103a7;
/** Whether the characters of the field are displayed as
password dots instead of themselves.
- {@deprecated Use inputType instead.}
+ {@deprecated Use inputType instead.}
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12311,7 +12311,7 @@ containing a value of this type.
@Deprecated
public static final int password=0x0101015c;
/** Fully qualified class name of an activity that allows the user to view any passwords
- saved by this service.
+ saved by this service.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12322,7 +12322,7 @@ containing a value of this type.
public static final int passwordsActivity=0x0101063f;
/** Specify a URI path that must exactly match, as per
{@link android.os.PatternMatcher} with
- {@link android.os.PatternMatcher#PATTERN_LITERAL}.
+ {@link android.os.PatternMatcher#PATTERN_LITERAL}.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12339,7 +12339,7 @@ containing a value of this type.
you will need to double-escape: for example a literal "*" would
be written as "\\*" and a literal "\" would be written as
"\\\\". This is basically the same as what you would need to
- write if constructing the string in Java code.
+ write if constructing the string in Java code.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12355,7 +12355,7 @@ containing a value of this type.
*/
public static final int pathAdvancedPattern=0x01010620;
public static final int pathColor=0x01160120;
- /** The specification of the operations that define the path.
+ /** The specification of the operations that define the path.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12372,7 +12372,7 @@ containing a value of this type.
you will need to double-escape: for example a literal "*" would
be written as "\\*" and a literal "\" would be written as
"\\\\". This is basically the same as what you would need to
- write if constructing the string in Java code.
+ write if constructing the string in Java code.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12383,7 +12383,7 @@ containing a value of this type.
public static final int pathPattern=0x0101002c;
/** Specify a URI path that must be a prefix to match, as per
{@link android.os.PatternMatcher} with
- {@link android.os.PatternMatcher#PATTERN_PREFIX}.
+ {@link android.os.PatternMatcher#PATTERN_PREFIX}.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12394,7 +12394,7 @@ containing a value of this type.
public static final int pathPrefix=0x0101002b;
/** Specify a URI path that must be a suffix to match, as per
{@link android.os.PatternMatcher} with
- {@link android.os.PatternMatcher#PATTERN_SUFFIX}.
+ {@link android.os.PatternMatcher#PATTERN_SUFFIX}.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12403,7 +12403,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int pathSuffix=0x0101061e;
- /** The path string describing the pattern to use for the PathPathMotion.
+ /** The path string describing the pattern to use for the PathPathMotion.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12416,7 +12416,7 @@ containing a value of this type.
use the associated object. If the client does not hold the named
permission, its request will fail. See the
Security and Permissions
- document for more information on permissions.
+ document for more information on permissions.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12425,7 +12425,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int permission=0x01010006;
- /** Flags indicating more context for a permission.
+ /** Flags indicating more context for a permission.
Must be one or more (separated by '|') of the following constant values.
@@ -12465,7 +12465,7 @@ containing a value of this type.
public static final int permissionFlags=0x010103c7;
/** Specified the name of a group that this permission is associated
with. The group must have been defined with the
- {@link android.R.styleable#AndroidManifestPermissionGroup permission-group} tag.
+ {@link android.R.styleable#AndroidManifestPermissionGroup permission-group} tag.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12474,7 +12474,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int permissionGroup=0x0101000a;
- /** Flags indicating more context for a permission group.
+ /** Flags indicating more context for a permission group.
Must be one or more (separated by '|') of the following constant values.
@@ -12490,7 +12490,7 @@ containing a value of this type.
/** Define how an activity persist across reboots. Activities defined as "never" will not
be persisted. Those defined as "always" will be persisted. Those defined as "taskOnly"
will persist the root activity of the task only. See below for more detail as to
- what gets persisted.
+ what gets persisted.
Must be one of the following constant values.
@@ -12521,7 +12521,7 @@ containing a value of this type.
public static final int persistableMode=0x0101042d;
/** Flag to control special persistent mode of an application. This should
not normally be used by applications; it requires that the system keep
- your application running at all times.
+ your application running at all times.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12537,7 +12537,7 @@ containing a value of this type.
memory but may prevent frequent garbage collection if the cache is created
over and over again. By default the persistence is set to scrolling.
Deprecated: The view drawing cache was largely made obsolete with the introduction of
- hardware-accelerated rendering in API 11.
+ hardware-accelerated rendering in API 11.
Must be one or more (separated by '|') of the following constant values.
@@ -12552,7 +12552,7 @@ containing a value of this type.
*/
public static final int persistentDrawingCache=0x010100ee;
/** If set, the "persistent" attribute will only be honored if the feature
- specified here is present on the device.
+ specified here is present on the device.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12563,7 +12563,7 @@ containing a value of this type.
public static final int persistentWhenFeatureAvailable=0x01010563;
/** If set, specifies that this TextView has a phone number input
method. The default is false.
- {@deprecated Use inputType instead.}
+ {@deprecated Use inputType instead.}
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12597,13 +12597,13 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int pivotY=0x010101b6;
- /** @hide
+ /** @hide
Specifies whether a home sound effect should be played if the home app moves to
front after an activity with this flag set to true
.
The default value of this attribute is true
.
Also note that home sounds are only played if the device supports home sounds,
usually TVs.
-
Requires permission {@code android.permission.DISABLE_SYSTEM_SOUND_EFFECTS}.
+
Requires permission {@code android.permission.DISABLE_SYSTEM_SOUND_EFFECTS}.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12676,12 +12676,12 @@ containing a value of this type.
public static final int pointerIconWait=0x01160138;
public static final int pointerIconZoomIn=0x01160145;
public static final int pointerIconZoomOut=0x01160146;
- /** The animation style to use for the popup window.
+ /** The animation style to use for the popup window.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int popupAnimationStyle=0x010102c9;
- /** The background to use for the popup window.
+ /** The background to use for the popup window.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -12689,7 +12689,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int popupBackground=0x01010176;
/** The characters to display in the popup keyboard.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12699,7 +12699,7 @@ containing a value of this type.
*/
@Deprecated
public static final int popupCharacters=0x01010244;
- /** Window elevation to use for the popup window.
+ /** Window elevation to use for the popup window.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -12710,43 +12710,43 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int popupElevation=0x0101048c;
- /** Transition used to move views into the popup window.
+ /** Transition used to move views into the popup window.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int popupEnterTransition=0x0101051f;
- /** Transition used to move views out of the popup window.
+ /** Transition used to move views out of the popup window.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int popupExitTransition=0x01010520;
/** The XML keyboard layout of any popup keyboard.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@Deprecated
public static final int popupKeyboard=0x01010243;
/** Layout resource for popup keyboards.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@Deprecated
public static final int popupLayout=0x0101023b;
- /** Default PopupMenu style.
+ /** Default PopupMenu style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int popupMenuStyle=0x01010300;
public static final int popupPromptView=0x011600e5;
/** Reference to a theme that should be used to inflate popups
- shown by widgets in the toolbar.
+ shown by widgets in the toolbar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int popupTheme=0x010104a9;
- /** Default PopupWindow style.
+ /** Default PopupWindow style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -12754,7 +12754,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** Specify a URI authority port that is handled, as per
{@link android.content.IntentFilter#addDataAuthority
IntentFilter.addDataAuthority()}. If a host is supplied
- but not a port, any port is matched.
+ but not a port, any port is matched.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12764,7 +12764,7 @@ containing a value of this type.
*/
public static final int port=0x01010029;
public static final int position=0x011600d1;
- /** The positive button text for the dialog. Set to @null to hide the positive button.
+ /** The positive button text for the dialog. Set to @null to hide the positive button.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12796,7 +12796,7 @@ containing a value of this type.
this field is ignored and the display will remain in its current
mode.
-
See {@link android.content.pm.ActivityInfo#FLAG_PREFER_MINIMAL_POST_PROCESSING}
+
See {@link android.content.pm.ActivityInfo#FLAG_PREFER_MINIMAL_POST_PROCESSING}
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12806,43 +12806,43 @@ containing a value of this type.
*/
public static final int preferMinimalPostProcessing=0x0101060c;
public static final int preferenceActivityStyle=0x01160027;
- /** Default style for PreferenceCategory.
+ /** Default style for PreferenceCategory.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int preferenceCategoryStyle=0x0101008c;
public static final int preferenceFragmentListStyle=0x0116002c;
public static final int preferenceFragmentPaddingSide=0x0116002d;
- /** Default style for Headers pane in PreferenceActivity.
+ /** Default style for Headers pane in PreferenceActivity.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int preferenceFragmentStyle=0x01010506;
public static final int preferenceFrameLayoutStyle=0x0116003a;
public static final int preferenceHeaderPanelStyle=0x0116002a;
- /** Default style for informational Preference.
+ /** Default style for informational Preference.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int preferenceInformationStyle=0x0101008d;
- /** The preference layout that has the child/tabbed effect.
+ /** The preference layout that has the child/tabbed effect.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int preferenceLayoutChild=0x01010094;
public static final int preferenceListStyle=0x0116002b;
public static final int preferencePanelStyle=0x01160029;
- /** Default style for PreferenceScreen.
+ /** Default style for PreferenceScreen.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int preferenceScreenStyle=0x0101008b;
- /** Default style for Preference.
+ /** Default style for Preference.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int preferenceStyle=0x0101008e;
- /** Theme to use for presentations spawned from this theme.
+ /** Theme to use for presentations spawned from this theme.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -12860,7 +12860,7 @@ or to a theme attribute in the form "?[package:][type:]na
The default value is {@code false}.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12871,7 +12871,7 @@ containing a value of this type.
public static final int preserveLegacyExternalStorage=0x01010614;
/** A preview, in a drawable resource id, of what the AppWidget will look like after it's
configured.
- If not supplied, the AppWidget's icon will be used.
+ If not supplied, the AppWidget's icon will be used.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
Must be a reference to another resource, in the form "@[+][package:]type:name
"
@@ -12883,13 +12883,13 @@ or to a theme attribute in the form "?[package:][type:]na
Unlike previewImage, previewLayout can better showcase AppWidget in different locales,
system themes, display sizes & density etc.
If supplied, this will take precedence over the previewImage on supported widget hosts.
- Otherwise, previewImage will be used.
+ Otherwise, previewImage will be used.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int previewLayout=0x01010627;
public static final int primary=0x0116014e;
- /** The alpha applied to the foreground color to create the primary text color.
+ /** The alpha applied to the foreground color to create the primary text color.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12911,7 +12911,7 @@ containing a value of this type.
Only use if you really need to impose some specific
order in which the broadcasts are received, or want to forcibly
place an activity to always be preferred over others. The value is a
- single integer, with higher numbers considered to be better.
+ single integer, with higher numbers considered to be better.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12925,7 +12925,7 @@ containing a value of this type.
implementation of the input method. This simply fills in
the {@link android.view.inputmethod.EditorInfo#privateImeOptions
EditorInfo.privateImeOptions} field when the input
- method is connected.
+ method is connected.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12947,7 +12947,7 @@ containing a value of this type.
multiple processes). If the process name begins with a lower-case
character, the component will be run in a global process of that name,
provided that you have permission to do so, allowing multiple
- applications to share one process to reduce resource usage.
+ applications to share one process to reduce resource usage.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12957,7 +12957,7 @@ containing a value of this type.
*/
public static final int process=0x01010011;
public static final int productId=0x0116015c;
- /** Defines the default progress value, between 0 and max.
+ /** Defines the default progress value, between 0 and max.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -12966,7 +12966,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int progress=0x01010137;
- /** Tint to apply to the progress indicator background.
+ /** Tint to apply to the progress indicator background.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -12976,7 +12976,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int progressBackgroundTint=0x01010465;
- /** Blending mode used to apply the progress indicator background tint.
+ /** Blending mode used to apply the progress indicator background tint.
Must be one of the following constant values.
@@ -12998,7 +12998,7 @@ containing a value of this type.
*/
public static final int progressBackgroundTintMode=0x01010466;
public static final int progressBarCornerRadius=0x01160034;
- /** Specifies the horizontal padding on either end for an embedded progress bar.
+ /** Specifies the horizontal padding on either end for an embedded progress bar.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -13009,53 +13009,53 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int progressBarPadding=0x01010319;
- /** Default ProgressBar style. This is a medium circular progress bar.
+ /** Default ProgressBar style. This is a medium circular progress bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int progressBarStyle=0x01010077;
- /** Horizontal ProgressBar style. This is a horizontal progress bar.
+ /** Horizontal ProgressBar style. This is a horizontal progress bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int progressBarStyleHorizontal=0x01010078;
- /** Inverse ProgressBar style. This is a medium circular progress bar.
+ /** Inverse ProgressBar style. This is a medium circular progress bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int progressBarStyleInverse=0x01010287;
- /** Large ProgressBar style. This is a large circular progress bar.
+ /** Large ProgressBar style. This is a large circular progress bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int progressBarStyleLarge=0x0101007a;
- /** Large inverse ProgressBar style. This is a large circular progress bar.
+ /** Large inverse ProgressBar style. This is a large circular progress bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int progressBarStyleLargeInverse=0x01010289;
- /** Small ProgressBar style. This is a small circular progress bar.
+ /** Small ProgressBar style. This is a small circular progress bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int progressBarStyleSmall=0x01010079;
- /** Small inverse ProgressBar style. This is a small circular progress bar.
+ /** Small inverse ProgressBar style. This is a small circular progress bar.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int progressBarStyleSmallInverse=0x01010288;
- /** Small ProgressBar in title style. This is a small circular progress bar that will be placed in title bars.
+ /** Small ProgressBar in title style. This is a small circular progress bar that will be placed in title bars.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int progressBarStyleSmallTitle=0x0101020f;
- /** Drawable used for the progress mode.
+ /** Drawable used for the progress mode.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int progressDrawable=0x0101013c;
public static final int progressLayout=0x0116009e;
- /** Tint to apply to the progress indicator.
+ /** Tint to apply to the progress indicator.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -13065,7 +13065,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int progressTint=0x01010463;
- /** Blending mode used to apply the progress indicator tint.
+ /** Blending mode used to apply the progress indicator tint.
Must be one of the following constant values.
@@ -13086,12 +13086,12 @@ containing a value of this type.
*/
public static final int progressTintMode=0x01010464;
- /** The prompt to display when the spinner's dialog is shown.
+ /** The prompt to display when the spinner's dialog is shown.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int prompt=0x0101017b;
- /** Name of the property being animated.
+ /** Name of the property being animated.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13100,7 +13100,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int propertyName=0x010102e1;
- /** Name of the property being animated as the X coordinate of the pathData.
+ /** Name of the property being animated as the X coordinate of the pathData.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13109,7 +13109,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int propertyXName=0x01010474;
- /** Name of the property being animated as the Y coordinate of the pathData.
+ /** Name of the property being animated as the Y coordinate of the pathData.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13132,7 +13132,7 @@ containing a value of this type.
int basePermissionType = permissionInfo.getProtection();
int permissionFlags = permissionInfo.getProtectionFlags();
-
+
Must be one or more (separated by '|') of the following constant values.
@@ -13236,7 +13236,7 @@ containing a value of this type.
*/
public static final int protectionLevel=0x01010009;
- /** The attribute that holds a Base64-encoded public key.
+ /** The attribute that holds a Base64-encoded public key.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13251,7 +13251,7 @@ containing a value of this type.
{@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your
searchable activity. To examine the string, use
{@link android.content.Intent#getStringExtra getStringExtra(SearchManager.ACTION_MSG)}.
- Optional attribute.
+ Optional attribute.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13266,7 +13266,7 @@ containing a value of this type.
returned zero results for a query, it will not be invoked again in that session for
supersets of that zero-results query. For example, if the activity returned zero
results for "bo", it would not be queried again for "bob".
- The default value is false
. Optional attribute..
+ The default value is false
. Optional attribute..
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13275,12 +13275,12 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int queryAfterZeroResults=0x01010282;
- /** Background for the section containing the search query.
+ /** Background for the section containing the search query.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int queryBackground=0x01010487;
- /** An optional query hint string to be displayed in the empty query field.
+ /** An optional query hint string to be displayed in the empty query field.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13293,43 +13293,43 @@ containing a value of this type.
public static final int queryPrefix=0x011601ac;
public static final int querySuffix=0x011601af;
public static final int quickContactBadgeOverlay=0x01160020;
- /** Default quickcontact badge style with large quickcontact window.
+ /** Default quickcontact badge style with large quickcontact window.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int quickContactBadgeStyleSmallWindowLarge=0x010102b3;
- /** Default quickcontact badge style with medium quickcontact window.
+ /** Default quickcontact badge style with medium quickcontact window.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int quickContactBadgeStyleSmallWindowMedium=0x010102b2;
- /** Default quickcontact badge style with small quickcontact window.
+ /** Default quickcontact badge style with small quickcontact window.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int quickContactBadgeStyleSmallWindowSmall=0x010102b1;
- /** Default quickcontact badge style with large quickcontact window.
+ /** Default quickcontact badge style with large quickcontact window.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int quickContactBadgeStyleWindowLarge=0x010102b0;
- /** Default quickcontact badge style with medium quickcontact window.
+ /** Default quickcontact badge style with medium quickcontact window.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int quickContactBadgeStyleWindowMedium=0x010102af;
- /** Default quickcontact badge style with small quickcontact window.
+ /** Default quickcontact badge style with small quickcontact window.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int quickContactBadgeStyleWindowSmall=0x010102ae;
public static final int quickContactWindowSize=0x011600eb;
- /** Default RadioButton style.
+ /** Default RadioButton style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int radioButtonStyle=0x0101007e;
- /** Defines the radius of the four corners.
+ /** Defines the radius of the four corners.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -13340,7 +13340,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int radius=0x010101a8;
- /** The rating to set by default.
+ /** The rating to set by default.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13349,17 +13349,17 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int rating=0x01010145;
- /** Default RatingBar style.
+ /** Default RatingBar style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int ratingBarStyle=0x0101007c;
- /** Indicator RatingBar style.
+ /** Indicator RatingBar style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int ratingBarStyleIndicator=0x01010210;
- /** Small indicator RatingBar style.
+ /** Small indicator RatingBar style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -13367,7 +13367,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** A specific {@link android.R.attr#permission} name for read-only
access to a {@link android.content.ContentProvider}. See the
Security and Permissions
- document for more information on permissions.
+ document for more information on permissions.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13397,7 +13397,7 @@ containing a value of this type.
The valid configuration changes include mcc and mnc which are the same with
those in configChanges. By default from Android O, we don't recreate the activity
even the app doesn't specify mcc or mnc in configChanges. If the app wants to
- be recreated, specify them in recreateOnConfigChanges.
+ be recreated, specify them in recreateOnConfigChanges.
Must be one or more (separated by '|') of the following constant values.
@@ -13412,7 +13412,7 @@ containing a value of this type.
*/
public static final int recreateOnConfigChanges=0x01010547;
/** Whether the preference has enabled to have its view recycled when used in the list
- view. This is true by default.
+ view. This is true by default.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13431,7 +13431,7 @@ containing a value of this type.
NOTE: Setting this flag to true
will not change the affinity of the task,
which is used for intent resolution during activity launch. The task's root activity will
- always define its affinity.
+ always define its affinity.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13443,7 +13443,7 @@ containing a value of this type.
public static final int removable=0x0116014f;
public static final int removeBeforeMRelease=0x01160116;
/** Tells ChangeTransform to track parent changes. Default is true. Corresponds to
- {@link android.transition.ChangeTransform#setReparent(boolean)}.
+ {@link android.transition.ChangeTransform#setReparent(boolean)}.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13454,7 +13454,7 @@ containing a value of this type.
public static final int reparent=0x010104bc;
/** A parent change should use an overlay or affect the transform of the
transitionining View. Default is true. Corresponds to
- {@link android.transition.ChangeTransform#setReparentWithOverlay(boolean)}.
+ {@link android.transition.ChangeTransform#setReparentWithOverlay(boolean)}.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13463,7 +13463,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int reparentWithOverlay=0x010104bd;
- /** Defines how many times the animation should repeat. The default value is 0.
+ /** Defines how many times the animation should repeat. The default value is 0.
May be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13481,7 +13481,7 @@ containing a value of this type.
*/
public static final int repeatCount=0x010101bf;
/** Defines the animation behavior when it reaches the end and the repeat count is
- greater than 0 or infinite. The default value is restart.
+ greater than 0 or infinite. The default value is restart.
Must be one of the following constant values.
@@ -13493,7 +13493,7 @@ containing a value of this type.
*/
public static final int repeatMode=0x010101c0;
- /** Application's requirement for five way navigation
+ /** Application's requirement for five way navigation
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13502,7 +13502,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int reqFiveWayNav=0x01010232;
- /** Application's requirement for a hard keyboard
+ /** Application's requirement for a hard keyboard
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13511,7 +13511,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int reqHardKeyboard=0x01010229;
- /** The input method preferred by an application.
+ /** The input method preferred by an application.
Must be one of the following constant values.
@@ -13525,7 +13525,7 @@ containing a value of this type.
*/
public static final int reqKeyboardType=0x01010228;
- /** The navigation device preferred by an application.
+ /** The navigation device preferred by an application.
Must be one of the following constant values.
@@ -13540,7 +13540,7 @@ containing a value of this type.
*/
public static final int reqNavigation=0x0101022a;
- /** The touch screen type used by an application.
+ /** The touch screen type used by an application.
Must be one of the following constant values.
@@ -13556,12 +13556,12 @@ containing a value of this type.
public static final int reqTouchScreen=0x01010227;
public static final int request=0x0116019f;
public static final int requestDetail=0x011601a0;
- /** @hide @TestApi
+ /** @hide @TestApi
@hide Request exemption from the foreground service restrictions introduced in S
(https://developer.android.com/about/versions/12/foreground-services)
Note the framework ignores this attribute at this time. Once apps target S or above,
there's no way to be exempted (without using a privileged permission).
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13580,7 +13580,7 @@ containing a value of this type.
The default value is:
- {@code false} for apps with targetSdkVersion >= 29 (Q).
- {@code true} for apps with targetSdkVersion < 29.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13613,7 +13613,7 @@ containing a value of this type.
app has {@link android.app.role}#SYSTEM_GALLERY role and targetSDK<=29
{@code false} otherwise.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13648,7 +13648,7 @@ containing a value of this type.
feature, and does not want to be installed on devices that
don't support it. If you set this to false, then this will
not impose a restriction on where the application can be
- installed.
+ installed.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13660,7 +13660,7 @@ containing a value of this type.
/** Declare that this application requires an account of a certain
type. The default value is null and indicates that the application can work without
any accounts. The type should correspond to the account authenticator type, such as
- "com.google".
+ "com.google".
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13672,7 +13672,7 @@ containing a value of this type.
public static final int requiredDisplayCategory=0x011601a8;
/** Optional: the system must support this feature for the permission to be
requested. If it doesn't support the feature, it will be as if the manifest didn't
- request it at all.
+ request it at all.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13682,7 +13682,7 @@ containing a value of this type.
*/
public static final int requiredFeature=0x01010554;
/** Flag to specify if this application needs to be present for all users. Only pre-installed
- applications can request this feature. Default value is false.
+ applications can request this feature. Default value is false.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13693,7 +13693,7 @@ containing a value of this type.
public static final int requiredForAllUsers=0x010103d0;
/** Optional: the system must NOT support this feature for the permission to be
requested. If it does support the feature, it will be as if the manifest didn't
- request it at all.
+ request it at all.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13703,12 +13703,12 @@ containing a value of this type.
*/
public static final int requiredNotFeature=0x01010555;
public static final int requiredSplitTypes=0x01160193;
- /** @hide
+ /** @hide
Required property name/value pair used to enable this overlay.
e.g. name=ro.oem.sku value=MKT210.
Overlay will be ignored unless system property exists and is
- set to specified value
- @hide This shouldn't be public.
+ set to specified value
+ @hide This shouldn't be public.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13718,8 +13718,8 @@ containing a value of this type.
*/
@android.annotation.SystemApi
public static final int requiredSystemPropertyName=0x01010565;
- /** @hide
- @hide This shouldn't be public.
+ /** @hide
+ @hide This shouldn't be public.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13729,7 +13729,7 @@ containing a value of this type.
*/
@android.annotation.SystemApi
public static final int requiredSystemPropertyValue=0x01010566;
- /** Defines which edges should be faded on scrolling.
+ /** Defines which edges should be faded on scrolling.
Must be one or more (separated by '|') of the following constant values.
@@ -13751,7 +13751,7 @@ containing a value of this type.
smallest screen width of the device is below the value supplied here,
then the application is considered incompatible with that device.
If not supplied, then any old smallScreens, normalScreens, largeScreens,
- or xlargeScreens attributes will be used instead.
+ or xlargeScreens attributes will be used instead.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13763,7 +13763,7 @@ containing a value of this type.
public static final int resOutColor=0x011600db;
public static final int resetEnabledSettingsOnAppDataCleared=0x0116019c;
/** Resize the view by adjusting the clipBounds rather than changing the
- dimensions of the view itself. The default value is false.
+ dimensions of the view itself. The default value is false.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13773,7 +13773,7 @@ containing a value of this type.
*/
public static final int resizeClip=0x010104cf;
/** Optional parameter which indicates if and how this widget can be
- resized. Supports combined values using | operator.
+ resized. Supports combined values using | operator.
May be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13797,7 +13797,7 @@ containing a value of this type.
applications that may not be compatible with newly introduced
screen sizes and newer applications that should be; it will be
set for you automatically based on whether you are targeting
- a newer platform that supports more screens.
+ a newer platform that supports more screens.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13836,7 +13836,7 @@ containing a value of this type.
Device compatibility mode.
-
+
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13847,12 +13847,12 @@ containing a value of this type.
public static final int resizeableActivity=0x010104f6;
/** Resource identifier to assign to this piece of named meta-data.
The resource identifier can later be retrieved from the meta data
- Bundle through {@link android.os.Bundle#getInt Bundle.getInt}.
+ Bundle through {@link android.os.Bundle#getInt Bundle.getInt}.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int resource=0x01010025;
- /** The xml file that defines the target id to overlay value mappings.
+ /** The xml file that defines the target id to overlay value mappings.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -13864,7 +13864,7 @@ or to a theme attribute in the form "?[package:][type:]na
attempt restore even when a version mismatch suggests that the data are
incompatible. Use with caution!
- The default value of this attribute is false
.
+
The default value of this attribute is false
.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13873,7 +13873,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int restoreAnyVersion=0x010102ba;
- /** @deprecated This attribute is not used by the Android operating system.
+ /** @deprecated This attribute is not used by the Android operating system.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13886,7 +13886,7 @@ containing a value of this type.
/** Declare that this application requires access to restricted accounts of a certain
type. The default value is null and restricted accounts won\'t be visible to this
application. The type should correspond to the account authenticator type, such as
- "com.google".
+ "com.google".
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13918,7 +13918,7 @@ containing a value of this type.
resources (such as opening the camera or recording audio) when it launches, or it
may conflict with the previous activity and fail.
-
The default value of this attribute is false
.
+
The default value of this attribute is false
.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13928,7 +13928,7 @@ containing a value of this type.
*/
public static final int resumeWhilePausing=0x010104b2;
public static final int reverseLayout=0x01160179;
- /** Whether this transition is reversible.
+ /** Whether this transition is reversible.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13942,7 +13942,7 @@ containing a value of this type.
than that higher numbers are more recent. This value is only meaningful
when the two {@link android.R.attr#versionCode} values are already
identical. When an app is delivered as multiple split APKs, each
- APK may have a different revisionCode value.
+ APK may have a different revisionCode value.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -13951,7 +13951,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int revisionCode=0x010104d5;
- /** Amount of right padding inside the gradient shape.
+ /** Amount of right padding inside the gradient shape.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -13962,12 +13962,12 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int right=0x010101af;
- /** Default style for RingtonePreference.
+ /** Default style for RingtonePreference.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int ringtonePreferenceStyle=0x01010093;
- /** Which ringtone type(s) to show in the picker.
+ /** Which ringtone type(s) to show in the picker.
Must be one or more (separated by '|') of the following constant values.
@@ -13981,7 +13981,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int ringtoneType=0x010101f9;
- /** Declare the policy to deal with user data when rollback is committed.
+ /** Declare the policy to deal with user data when rollback is committed.
Must be one of the following constant values.
@@ -13994,7 +13994,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int rollbackDataPolicy=0x01010617;
- /** rotation of the view, in degrees.
+ /** rotation of the view, in degrees.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14011,7 +14011,7 @@ containing a value of this type.
WindowManager.LayoutParams
may be racy with app startup
and update transitions that occur during application startup; and so,
specify the animation in the manifest attribute.
-
+
Must be one or more (separated by '|') of the following constant values.
@@ -14025,7 +14025,7 @@ containing a value of this type.
*/
public static final int rotationAnimation=0x0101053a;
- /** rotation of the view around the x axis, in degrees.
+ /** rotation of the view around the x axis, in degrees.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14034,7 +14034,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int rotationX=0x01010327;
- /** rotation of the view around the y axis, in degrees.
+ /** rotation of the view around the y axis, in degrees.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14054,12 +14054,12 @@ containing a value of this type.
The given round icon will be used to display to the user a graphical
representation of its associated component; for example, as the round icon
for main activity that is displayed in the launcher. This must be
- a reference to a Drawable resource containing the image definition.
+ a reference to a Drawable resource containing the image definition.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int roundIcon=0x0101052c;
- /** The maximum number of rows to create when automatically positioning children.
+ /** The maximum number of rows to create when automatically positioning children.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14069,7 +14069,7 @@ containing a value of this type.
*/
public static final int rowCount=0x01010375;
/** Fraction of the animation duration used to delay the beginning of
- the animation of each row.
+ the animation of each row.
May be a floating point value, such as "1.2
".
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%
".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
@@ -14082,7 +14082,7 @@ containing a value of this type.
*/
public static final int rowDelay=0x010101d0;
/** Row edge flags.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be one or more (separated by '|') of the following constant values.
@@ -14097,7 +14097,7 @@ containing a value of this type.
*/
@Deprecated
public static final int rowEdgeFlags=0x01010241;
- /** Defines the height of each row.
+ /** Defines the height of each row.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -14125,7 +14125,7 @@ containing a value of this type.
(however it also must have an ID assigned to it for its
state to be saved). Setting this to false only disables the
state for this view, not for its children which may still
- be saved.
+ be saved.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14135,7 +14135,7 @@ containing a value of this type.
*/
public static final int saveEnabled=0x010100e7;
/** Specifies where the drawable is positioned after scaling. The default value is
- left.
+ left.
Must be one or more (separated by '|') of the following constant values.
@@ -14176,7 +14176,7 @@ containing a value of this type.
*/
public static final int scaleHeight=0x010101fd;
/** Controls how the image should be resized or moved to match the size
- of this ImageView. See {@link android.widget.ImageView.ScaleType}
+ of this ImageView. See {@link android.widget.ImageView.ScaleType}
Must be one of the following constant values.
@@ -14210,7 +14210,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int scaleWidth=0x010101fc;
- /** scale of the view in the x direction.
+ /** scale of the view in the x direction.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14219,7 +14219,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int scaleX=0x01010324;
- /** scale of the view in the y direction.
+ /** scale of the view in the y direction.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14233,7 +14233,7 @@ containing a value of this type.
IntentFilter.addDataScheme()}.
Note: scheme matching in the Android framework is
case-sensitive, unlike the formal RFC. As a result,
- schemes here should always use lower case letters.
+ schemes here should always use lower case letters.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14243,7 +14243,7 @@ containing a value of this type.
*/
public static final int scheme=0x01010027;
/** Specifies a compatible screen density, as per the device
- configuration screen density bins.
+ configuration screen density bins.
May be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14276,7 +14276,7 @@ containing a value of this type.
(ignore) this attribute to improve the layout of apps. See
Device compatibility mode.
-
+
Must be one of the following constant values.
@@ -14376,7 +14376,7 @@ containing a value of this type.
*/
public static final int screenReaderFocusable=0x01010574;
/** Specifies a compatible screen size, as per the device
- configuration screen size bins.
+ configuration screen size bins.
Must be one of the following constant values.
@@ -14392,7 +14392,7 @@ containing a value of this type.
public static final int screenSize=0x010102ca;
public static final int scrollCaptureHint=0x011600ae;
/** Whether the text is allowed to be wider than the view (and
- therefore can be scrolled horizontally).
+ therefore can be scrolled horizontally).
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14405,7 +14405,7 @@ containing a value of this type.
public static final int scrollIndicatorPaddingRight=0x01160160;
/** Defines which scroll indicators should be displayed when the view
can be scrolled. Multiple values may be combined using logical OR,
- for example "top|bottom".
+ for example "top|bottom".
Must be one or more (separated by '|') of the following constant values.
@@ -14424,7 +14424,7 @@ containing a value of this type.
*/
public static final int scrollIndicators=0x010104e6;
- /** Default ScrollView style.
+ /** Default ScrollView style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -14440,7 +14440,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int scrollX=0x010100d2;
- /** The initial vertical scroll offset, in pixels.
+ /** The initial vertical scroll offset, in pixels.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -14451,7 +14451,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int scrollY=0x010100d3;
- /** Defines whether the horizontal scrollbar track should always be drawn.
+ /** Defines whether the horizontal scrollbar track should always be drawn.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14460,7 +14460,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int scrollbarAlwaysDrawHorizontalTrack=0x01010068;
- /** Defines whether the vertical scrollbar track should always be drawn.
+ /** Defines whether the vertical scrollbar track should always be drawn.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14469,7 +14469,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int scrollbarAlwaysDrawVerticalTrack=0x01010069;
- /** Defines the delay in milliseconds that a scrollbar waits before fade out.
+ /** Defines the delay in milliseconds that a scrollbar waits before fade out.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14478,7 +14478,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int scrollbarDefaultDelayBeforeFade=0x010102a9;
- /** Defines the delay in milliseconds that a scrollbar takes to fade out.
+ /** Defines the delay in milliseconds that a scrollbar takes to fade out.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14487,7 +14487,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int scrollbarFadeDuration=0x010102a8;
- /** Sets the width of vertical scrollbars and height of horizontal scrollbars.
+ /** Sets the width of vertical scrollbars and height of horizontal scrollbars.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -14519,27 +14519,27 @@ containing a value of this type.
*/
public static final int scrollbarStyle=0x0101007f;
- /** Defines the horizontal scrollbar thumb drawable.
+ /** Defines the horizontal scrollbar thumb drawable.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int scrollbarThumbHorizontal=0x01010064;
- /** Defines the vertical scrollbar thumb drawable.
+ /** Defines the vertical scrollbar thumb drawable.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int scrollbarThumbVertical=0x01010065;
- /** Defines the horizontal scrollbar track drawable.
+ /** Defines the horizontal scrollbar track drawable.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int scrollbarTrackHorizontal=0x01010066;
- /** Defines the vertical scrollbar track drawable.
+ /** Defines the vertical scrollbar track drawable.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int scrollbarTrackVertical=0x01010067;
- /** Defines which scrollbars should be displayed on scrolling or not.
+ /** Defines which scrollbars should be displayed on scrolling or not.
Must be one or more (separated by '|') of the following constant values.
@@ -14554,7 +14554,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int scrollbars=0x010100de;
/** When set to true, the list uses a drawing cache during scrolling.
This makes the rendering faster but uses more memory. The default
- value is true.
+ value is true.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14563,8 +14563,8 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int scrollingCache=0x010100fe;
- /** @hide
- The extension SDK version that this tag refers to.
+ /** @hide
+ The extension SDK version that this tag refers to.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14588,17 +14588,17 @@ containing a value of this type.
@Deprecated
public static final int searchButtonText=0x01010205;
public static final int searchDialogTheme=0x01160039;
- /** Search icon displayed as a text field hint.
+ /** Search icon displayed as a text field hint.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int searchHintIcon=0x010104d4;
- /** Search icon.
+ /** Search icon.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int searchIcon=0x01010483;
- /** The actual keyphrase/hint text, or empty if not keyphrase dependent. @hide
+ /** The actual keyphrase/hint text, or empty if not keyphrase dependent. @hide
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14607,7 +14607,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int searchKeyphrase=0x0101045f;
- /** A globally unique ID for the keyphrase. @hide
+ /** A globally unique ID for the keyphrase. @hide
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14616,7 +14616,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int searchKeyphraseId=0x0101045e;
- /** Flags for supported recognition modes. @hide
+ /** Flags for supported recognition modes. @hide
Must be one or more (separated by '|') of the following constant values.
@@ -14630,7 +14630,7 @@ containing a value of this type.
*/
public static final int searchKeyphraseRecognitionFlags=0x010104a6;
/** A comma separated list of BCP-47 language tag for locales that are supported
- for this keyphrase, or empty if not locale dependent. @hide
+ for this keyphrase, or empty if not locale dependent. @hide
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14641,7 +14641,7 @@ containing a value of this type.
public static final int searchKeyphraseSupportedLocales=0x01010460;
/** Additional features are controlled by mode bits in this field. Omitting
this field, or setting to zero, provides default behavior. Optional attribute.
-
+
Must be one or more (separated by '|') of the following constant values.
@@ -14668,7 +14668,7 @@ containing a value of this type.
public static final int searchResultListItemHeight=0x01160012;
/** If provided, this string will be used to describe the searchable item in the
searchable items settings within system search settings. Optional
- attribute.
+ attribute.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14681,7 +14681,7 @@ containing a value of this type.
provides suggestions as well. The value must be a fully-qualified content provider
authority (for example, "com.example.android.apis.SuggestionProvider") and should match
the "android:authorities" tag in your content provider's manifest entry. Optional
- attribute.
+ attribute.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14692,7 +14692,7 @@ containing a value of this type.
public static final int searchSuggestAuthority=0x010101d6;
/** If provided, and not overridden by an action in the selected suggestion, this
string will be placed in the action field of the {@link android.content.Intent Intent}
- when the user clicks a suggestion. Optional attribute.
+ when the user clicks a suggestion. Optional attribute.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14703,7 +14703,7 @@ containing a value of this type.
public static final int searchSuggestIntentAction=0x010101d9;
/** If provided, and not overridden by an action in the selected suggestion, this
string will be placed in the data field of the {@link android.content.Intent Intent}
- when the user clicks a suggestion. Optional attribute.
+ when the user clicks a suggestion. Optional attribute.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14714,7 +14714,7 @@ containing a value of this type.
public static final int searchSuggestIntentData=0x010101da;
/** If provided, this will be inserted in the suggestions query Uri, after the authority
you have provide but before the standard suggestions path. Optional attribute.
-
+
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14728,7 +14728,7 @@ containing a value of this type.
database, and will contain a single question mark, which represents the actual query
string that has been typed by the user. If not provided, then the user query text
will be appended to the query Uri (after an additional "/".) Optional
- attribute.
+ attribute.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14738,7 +14738,7 @@ containing a value of this type.
*/
public static final int searchSuggestSelection=0x010101d8;
/** If provided, this is the minimum number of characters needed to trigger
- search suggestions. The default value is 0. Optional attribute.
+ search suggestions. The default value is 0. Optional attribute.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14747,13 +14747,13 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int searchSuggestThreshold=0x0101026d;
- /** Style for the search query widget.
+ /** Style for the search query widget.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int searchViewStyle=0x01010480;
public static final int searchWidgetCorpusItemBackground=0x01160009;
- /** The alpha applied to the foreground color to create the secondary text color.
+ /** The alpha applied to the foreground color to create the secondary text color.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14764,7 +14764,7 @@ containing a value of this type.
public static final int secondaryContentAlpha=0x01010553;
/** Defines the secondary progress value, between 0 and max. This progress is drawn between
the primary progress and the background. It can be ideal for media scenarios such as
- showing the buffering progress while the default progress shows the play progress.
+ showing the buffering progress while the default progress shows the play progress.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14773,7 +14773,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int secondaryProgress=0x01010138;
- /** Tint to apply to the secondary progress indicator.
+ /** Tint to apply to the secondary progress indicator.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -14783,7 +14783,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int secondaryProgressTint=0x01010467;
- /** Blending mode used to apply the secondary progress indicator tint.
+ /** Blending mode used to apply the secondary progress indicator tint.
Must be one of the following constant values.
@@ -14804,7 +14804,7 @@ containing a value of this type.
*/
public static final int secondaryProgressTintMode=0x01010468;
- /** Secure Element which the AIDs should be routed to
+ /** Secure Element which the AIDs should be routed to
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14815,19 +14815,19 @@ containing a value of this type.
public static final int secureElementName=0x01010602;
public static final int seekBarDialogPreferenceStyle=0x01160028;
public static final int seekBarPreferenceStyle=0x0116002e;
- /** Default SeekBar style.
+ /** Default SeekBar style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int seekBarStyle=0x0101007b;
/** Style for segmented buttons - a container that houses several buttons
- with the appearance of a singel button broken into segments.
+ with the appearance of a singel button broken into segments.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int segmentedButtonStyle=0x01010330;
/** If the text is selectable, select it all when the view takes
- focus.
+ focus.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14836,7 +14836,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int selectAllOnFocus=0x0101015e;
- /** Whether the Preference is selectable.
+ /** Whether the Preference is selectable.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14846,7 +14846,7 @@ containing a value of this type.
*/
public static final int selectable=0x010101e6;
/** Flag indicating whether a recognition service can be selected as default. The default
- value of this flag is true.
+ value of this flag is true.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14855,23 +14855,23 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int selectableAsDefault=0x01010640;
- /** Background drawable for bordered standalone items that need focus/pressed states.
+ /** Background drawable for bordered standalone items that need focus/pressed states.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int selectableItemBackground=0x0101030e;
- /** Background drawable for borderless standalone items that need focus/pressed states.
+ /** Background drawable for borderless standalone items that need focus/pressed states.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int selectableItemBackgroundBorderless=0x0101045c;
- /** @deprecated Drawable for the vertical bar shown at the beginning and at the end of the selected date.
+ /** @deprecated Drawable for the vertical bar shown at the beginning and at the end of the selected date.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@Deprecated
public static final int selectedDateVerticalBar=0x01010347;
- /** @deprecated The background color for the selected week.
+ /** @deprecated The background color for the selected week.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -14880,7 +14880,7 @@ or to a theme attribute in the form "?[package:][type:]na
@Deprecated
public static final int selectedWeekBackgroundColor=0x01010342;
public static final int selectionDivider=0x011600f4;
- /** The height of the selection divider.
+ /** The height of the selection divider.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -14893,7 +14893,7 @@ containing a value of this type.
public static final int selectionDividerHeight=0x01010598;
public static final int selectionDividersDistance=0x011600f5;
public static final int selectionScrollOffset=0x011600a3;
- /** The service that hosts active voice interaction sessions. This is required.
+ /** The service that hosts active voice interaction sessions. This is required.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14903,7 +14903,7 @@ containing a value of this type.
*/
public static final int sessionService=0x0101043d;
/** Component name of an activity that allows the user to modify
- the settings for this service.
+ the settings for this service.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14918,7 +14918,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int settingsActivity=0x01010225;
- /** Uri that specifies a settings Slice for this wallpaper.
+ /** Uri that specifies a settings Slice for this wallpaper.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14928,7 +14928,7 @@ containing a value of this type.
*/
public static final int settingsSliceUri=0x01010593;
public static final int settingsSubtitle=0x0116018c;
- /** Component name of an activity that allows the user to set up this service.
+ /** Component name of an activity that allows the user to set up this service.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14941,7 +14941,7 @@ containing a value of this type.
specified color. The text shadow produced does not interact with
properties on View that are responsible for real time shadows,
{@link android.R.styleable#View_elevation elevation} and
- {@link android.R.styleable#View_translationZ translationZ}.
+ {@link android.R.styleable#View_translationZ translationZ}.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -14951,7 +14951,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int shadowColor=0x01010161;
- /** Horizontal offset of the text shadow.
+ /** Horizontal offset of the text shadow.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14960,7 +14960,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int shadowDx=0x01010162;
- /** Vertical offset of the text shadow.
+ /** Vertical offset of the text shadow.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14969,7 +14969,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int shadowDy=0x01010163;
- /** Blur radius of the text shadow.
+ /** Blur radius of the text shadow.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -14978,7 +14978,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int shadowRadius=0x01010164;
- /** Indicates what shape to fill with a gradient.
+ /** Indicates what shape to fill with a gradient.
Must be one of the following constant values.
@@ -15012,7 +15012,7 @@ containing a value of this type.
communication mechanisms, such as services and content providers,
to facilitate interoperability between shared components. Note that
existing apps cannot remove this value, as migrating off a
- shared user ID is not supported.
+ shared user ID is not supported.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15028,7 +15028,7 @@ containing a value of this type.
string.
@deprecated There is no replacement for this attribute.
{@link android.R.attr#sharedUserId} has been deprecated making
- this attribute unnecessary.
+ this attribute unnecessary.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -15036,7 +15036,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int sharedUserLabel=0x01010261;
public static final int sharedUserMaxSdkVersion=0x0116018f;
/** Flag indicating whether the application can be profiled by the shell user,
- even when running on a device that is running in user mode.
+ even when running on a device that is running in user mode.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15068,7 +15068,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int shortcutShortLabel=0x01010529;
public static final int shouldDefaultToObserveMode=0x011600c5;
/** Whether the view of this Preference should be disabled when
- this Preference is disabled.
+ this Preference is disabled.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15078,7 +15078,7 @@ containing a value of this type.
*/
public static final int shouldDisableView=0x010101ee;
public static final int shouldUseDefaultUnfoldTransition=0x0116011b;
- /** How this item should display in the Action Bar, if present.
+ /** How this item should display in the Action Bar, if present.
Must be one or more (separated by '|') of the following constant values.
@@ -15105,7 +15105,7 @@ containing a value of this type.
public static final int showAtTop=0x0116016d;
public static final int showBackdrop=0x01160101;
public static final int showClockAndComplications=0x0116011c;
- /** Whether to show an item for a default sound.
+ /** Whether to show an item for a default sound.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15114,7 +15114,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int showDefault=0x010101fa;
- /** Setting for which dividers to show.
+ /** Setting for which dividers to show.
Must be one or more (separated by '|') of the following constant values.
@@ -15131,7 +15131,7 @@ containing a value of this type.
/** Specify that an Activity should be shown even if the current/foreground user
is different from the user of the Activity. This will also force the
android.view.LayoutParams.FLAG_SHOW_WHEN_LOCKED
flag
- to be set for all windows of this activity
+ to be set for all windows of this activity
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15157,7 +15157,7 @@ containing a value of this type.
set to true, any component that shows a preview of this live wallpaper should also show
accompanying information like the title, the description, the author and the context
description of this wallpaper so the user gets to know further information about this
- wallpaper.
+ wallpaper.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15168,7 +15168,7 @@ containing a value of this type.
public static final int showMetadataInPreview=0x0101052f;
/** Specify that an Activity should be shown over the lock screen and,
in a multiuser environment, across all users' windows.
- @deprecated use {@link android.R.attr#showForAllUsers} instead.
+ @deprecated use {@link android.R.attr#showForAllUsers} instead.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15180,7 +15180,7 @@ containing a value of this type.
public static final int showOnLockScreen=0x010103c9;
public static final int showRelative=0x0116016f;
public static final int showSeekBarValue=0x01160155;
- /** Whether to show an item for 'Silent'.
+ /** Whether to show an item for 'Silent'.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15189,7 +15189,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int showSilent=0x010101fb;
- /** Whether to draw on/off text.
+ /** Whether to draw on/off text.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15200,7 +15200,7 @@ containing a value of this type.
public static final int showText=0x010104ad;
public static final int showTitle=0x011600a0;
public static final int showWallpaper=0x011600ff;
- /** @deprecated Whether do show week numbers.
+ /** @deprecated Whether do show week numbers.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15219,7 +15219,7 @@ containing a value of this type.
This should be used instead of {@link android.view.WindowManager.LayoutParams#FLAG_SHOW_WHEN_LOCKED}
flag set for Windows. When using the Window flag during activity startup, there may not be
time to add it before the system stops your activity for being behind the lock-screen.
- This leads to a double life-cycle as it is then restarted.
+ This leads to a double life-cycle as it is then restarted.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15228,7 +15228,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int showWhenLocked=0x01010569;
- /** @deprecated The number of weeks to be shown.
+ /** @deprecated The number of weeks to be shown.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15242,7 +15242,7 @@ containing a value of this type.
must be separated by a comma: 1, 2, 5. Illegal and duplicate
indices are ignored. You can shrink all columns by using the
value "*" instead. Note that a column can be marked stretchable
- and shrinkable at the same time.
+ and shrinkable at the same time.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15263,7 +15263,7 @@ containing a value of this type.
{@deprecated This attribute is deprecated. Use maxLines
instead to change
the layout of a static text, and use the textMultiLine
flag in the
inputType attribute instead for editable text views (if both singleLine and inputType
- are supplied, the inputType flags will override the value of singleLine). }
+ are supplied, the inputType flags will override the value of singleLine). }
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15274,7 +15274,7 @@ containing a value of this type.
@Deprecated
public static final int singleLine=0x0101015d;
/** Whether to use single line for the preference title text. By default, preference title
- will be constrained to one line, so the default value of this attribute is true.
+ will be constrained to one line, so the default value of this attribute is true.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15293,7 +15293,7 @@ containing a value of this type.
available to applications built in to the system image; you must hold the
permission INTERACT_ACROSS_USERS in order
to use this feature. This flag can only be used with services,
- receivers, and providers; it can not be used with activities.
+ receivers, and providers; it can not be used with activities.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15317,7 +15317,7 @@ containing a value of this type.
*/
public static final int slideEdge=0x01010430;
- /** Smaller icon of the authenticator.
+ /** Smaller icon of the authenticator.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -15329,7 +15329,7 @@ or to a theme attribute in the form "?[package:][type:]na
density or VGA high density screen. An application that does
not support small screens will not be available for
small screen devices, since there is little the platform can do
- to make such an application work on a smaller screen.
+ to make such an application work on a smaller screen.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15345,7 +15345,7 @@ containing a value of this type.
your adapter displays items of varying heights, the scrollbar thumb will
change size as the user scrolls through the list. When set to false, the list
will use only the number of items in the adapter and the number of items visible
- on screen to determine the scrollbar's properties.
+ on screen to determine the scrollbar's properties.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15354,7 +15354,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int smoothScrollbar=0x01010231;
- /** @hide Color for the solid color background if such for optimized rendering.
+ /** @hide Color for the solid color background if such for optimized rendering.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -15362,7 +15362,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int solidColor=0x0101034a;
/** Boolean that controls whether a view should have sound effects
- enabled for events such as clicking and touching.
+ enabled for events such as clicking and touching.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15382,17 +15382,17 @@ containing a value of this type.
*/
public static final int spacing=0x01010113;
public static final int spanCount=0x01160178;
- /** Default style for spinner drop down items.
+ /** Default style for spinner drop down items.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int spinnerDropDownItemStyle=0x01010087;
- /** Default spinner item style.
+ /** Default spinner item style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int spinnerItemStyle=0x01010089;
- /** Display mode for spinner options.
+ /** Display mode for spinner options.
Must be one of the following constant values.
@@ -15405,12 +15405,12 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int spinnerMode=0x010102f1;
- /** Default Spinner style.
+ /** Default Spinner style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int spinnerStyle=0x01010081;
- /** Whether the spinners are shown. Only valid for "spinner" mode.
+ /** Whether the spinners are shown. Only valid for "spinner" mode.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15432,7 +15432,7 @@ or to a theme attribute in the form "?[package:][type:]na
multiple children. MotionEvents for each pointer will be dispatched to the child
view where the initial ACTION_DOWN event happened.
See {@link android.view.ViewGroup#setMotionEventSplittingEnabled(boolean)}
- for more information.
+ for more information.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15442,7 +15442,7 @@ containing a value of this type.
*/
public static final int splitMotionEvents=0x010102ef;
/** When an application is partitioned into splits, this is the name of the
- split that contains the defined component.
+ split that contains the defined component.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15451,7 +15451,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int splitName=0x01010549;
- /** Whether to split the track and leave a gap for the thumb drawable.
+ /** Whether to split the track and leave a gap for the thumb drawable.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15461,7 +15461,7 @@ containing a value of this type.
*/
public static final int splitTrack=0x0101044c;
public static final int splitTypes=0x01160194;
- /** Alpha value of the spot shadow projected by elevated views, between 0 and 1.
+ /** Alpha value of the spot shadow projected by elevated views, between 0 and 1.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15470,7 +15470,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int spotShadowAlpha=0x010104bf;
- /** Sets a drawable as the content of this ImageView.
+ /** Sets a drawable as the content of this ImageView.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -15480,7 +15480,7 @@ or to a theme attribute in the form "?[package:][type:]na
/** Specify a URI scheme specific part that must exactly match, as per
{@link android.content.IntentFilter#addDataSchemeSpecificPart
IntentFilter.addDataSchemeSpecificPart()} with
- {@link android.os.PatternMatcher#PATTERN_LITERAL}.
+ {@link android.os.PatternMatcher#PATTERN_LITERAL}.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15498,7 +15498,7 @@ containing a value of this type.
you will need to double-escape: for example a literal "*" would
be written as "\\*" and a literal "\" would be written as
"\\\\". This is basically the same as what you would need to
- write if constructing the string in Java code.
+ write if constructing the string in Java code.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15516,7 +15516,7 @@ containing a value of this type.
you will need to double-escape: for example a literal "*" would
be written as "\\*" and a literal "\" would be written as
"\\\\". This is basically the same as what you would need to
- write if constructing the string in Java code.
+ write if constructing the string in Java code.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15528,7 +15528,7 @@ containing a value of this type.
/** Specify a URI scheme specific part that must be a prefix to match, as per
{@link android.content.IntentFilter#addDataSchemeSpecificPart
IntentFilter.addDataSchemeSpecificPart()} with
- {@link android.os.PatternMatcher#PATTERN_PREFIX}.
+ {@link android.os.PatternMatcher#PATTERN_PREFIX}.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15540,7 +15540,7 @@ containing a value of this type.
/** Specify a URI scheme specific part that must be a suffix to match, as per
{@link android.content.IntentFilter#addDataSchemeSpecificPart
IntentFilter.addDataSchemeSpecificPart()} with
- {@link android.os.PatternMatcher#PATTERN_SUFFIX}.
+ {@link android.os.PatternMatcher#PATTERN_SUFFIX}.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15549,7 +15549,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int sspSuffix=0x0101061f;
- /** Used by ListView and GridView to stack their content from the bottom.
+ /** Used by ListView and GridView to stack their content from the bottom.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15559,18 +15559,18 @@ containing a value of this type.
*/
public static final int stackFromBottom=0x010100fd;
public static final int stackFromEnd=0x0116017a;
- /** Default StackView style.
+ /** Default StackView style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int stackViewStyle=0x0101043e;
- /** Default Star style.
+ /** Default Star style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int starStyle=0x01010082;
/** Start inset to apply to the layer. Overrides {@code left} or
- {@code right} depending on layout direction.
+ {@code right} depending on layout direction.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -15581,7 +15581,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int start=0x010104db;
- /** Start color of the gradient.
+ /** Start color of the gradient.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -15591,7 +15591,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int startColor=0x0101019d;
- /** Delay in milliseconds before the transition starts.
+ /** Delay in milliseconds before the transition starts.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15600,7 +15600,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int startDelay=0x010103e2;
- /** Delay in milliseconds before the animation runs, once start time is reached.
+ /** Delay in milliseconds before the animation runs, once start time is reached.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15609,9 +15609,9 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int startOffset=0x010101be;
- /** LinearGradient specific
+ /** LinearGradient specific
X coordinate of the start point origin of the gradient.
- Defined in same coordinates as the path itself
+ Defined in same coordinates as the path itself
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15621,7 +15621,7 @@ containing a value of this type.
*/
public static final int startX=0x01010510;
/** Y coordinate of the start point of the gradient within the shape.
- Defined in same coordinates as the path itself
+ Defined in same coordinates as the path itself
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15630,9 +15630,9 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int startY=0x01010511;
- /** {@deprecated Use minDate instead.}
+ /** {@deprecated Use minDate instead.}
The first year (inclusive), for example "1940".
- {@deprecated Use minDate instead.}
+ {@deprecated Use minDate instead.}
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15642,7 +15642,7 @@ containing a value of this type.
*/
@Deprecated
public static final int startYear=0x0101017c;
- /** Sets the state-based animator for the View.
+ /** Sets the state-based animator for the View.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -15658,7 +15658,7 @@ or to a theme attribute in the form "?[package:][type:]na
with a null icicle, just like it was starting for the first time.
This is used by the Home activity to make sure it does not get
- removed if it crashes for some reason.
+ removed if it crashes for some reason.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15667,7 +15667,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int stateNotNeeded=0x01010016;
- /** State identifier indicating the popup will be above the anchor.
+ /** State identifier indicating the popup will be above the anchor.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15682,7 +15682,7 @@ containing a value of this type.
bitmap with one layer of text and bitmaps composited on top of it
at 60fps. When this is set, the colorBackgroundCacheHint will be
ignored even if it specifies a solid color, since that optimization
- is not needed.
+ is not needed.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15695,7 +15695,7 @@ containing a value of this type.
/** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
set when a view or its parent has been "activated" meaning the user has currently
marked it as being of interest. This is an alternative representation of
- state_checked for when the state should be propagated down the view hierarchy.
+ state_checked for when the state should be propagated down the view hierarchy.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15706,7 +15706,7 @@ containing a value of this type.
public static final int state_activated=0x010102fe;
/** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
set when a view or drawable is considered "active" by its host. Actual usage may vary
- between views. Consult the host view documentation for details.
+ between views. Consult the host view documentation for details.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15717,7 +15717,7 @@ containing a value of this type.
public static final int state_active=0x010100a2;
/** State identifier indicating that the object may display a check mark. See
{@link android.R.attr#state_checked} for the identifier that indicates whether it is
- actually checked.
+ actually checked.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15729,7 +15729,7 @@ containing a value of this type.
/** State identifier indicating that the object is currently checked. See
{@link android.R.attr#state_checkable} for an additional identifier that can indicate
if any object may ever display a check, regardless of whether state_checked is
- currently set.
+ currently set.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15740,7 +15740,7 @@ containing a value of this type.
public static final int state_checked=0x010100a0;
/** State for {@link android.graphics.drawable.StateListDrawable StateListDrawable}
indicating that the Drawable is in a view that is capable of accepting a drop of
- the content currently being manipulated in a drag-and-drop operation.
+ the content currently being manipulated in a drag-and-drop operation.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15751,7 +15751,7 @@ containing a value of this type.
public static final int state_drag_can_accept=0x01010368;
/** State for {@link android.graphics.drawable.StateListDrawable StateListDrawable}
indicating that a drag operation (for which the Drawable's view is a valid recipient)
- is currently positioned over the Drawable.
+ is currently positioned over the Drawable.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15760,7 +15760,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int state_drag_hovered=0x01010369;
- /** State identifier indicating the group is empty (has no children).
+ /** State identifier indicating the group is empty (has no children).
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15770,7 +15770,7 @@ containing a value of this type.
*/
public static final int state_empty=0x010100a9;
/** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
- set when a view is enabled.
+ set when a view is enabled.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15779,7 +15779,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int state_enabled=0x0101009e;
- /** State identifier indicating the group is expanded.
+ /** State identifier indicating the group is expanded.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15790,7 +15790,7 @@ containing a value of this type.
public static final int state_expanded=0x010100a8;
/** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
set when a view or drawable is in the first position in an ordered set. Actual usage
- may vary between views. Consult the host view documentation for details.
+ may vary between views. Consult the host view documentation for details.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15800,7 +15800,7 @@ containing a value of this type.
*/
public static final int state_first=0x010100a4;
/** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
- set when a view has input focus.
+ set when a view has input focus.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15810,7 +15810,7 @@ containing a value of this type.
*/
public static final int state_focused=0x0101009c;
/** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
- set when a pointer is hovering over the view.
+ set when a pointer is hovering over the view.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15821,7 +15821,7 @@ containing a value of this type.
public static final int state_hovered=0x01010367;
/** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
set when a view or drawable is in the last position in an ordered set. Actual usage
- may vary between views. Consult the host view documentation for details.
+ may vary between views. Consult the host view documentation for details.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15832,7 +15832,7 @@ containing a value of this type.
public static final int state_last=0x010100a6;
/** State for {@link android.inputmethodservice.KeyboardView KeyboardView}
key preview background.
- {@deprecated Copy this definition into your own application project.}
+ {@deprecated Copy this definition into your own application project.}
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15844,7 +15844,7 @@ containing a value of this type.
public static final int state_long_pressable=0x0101023c;
/** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
set when a view or drawable is in the middle position in an ordered set. Actual usage
- may vary between views. Consult the host view documentation for details.
+ may vary between views. Consult the host view documentation for details.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15853,7 +15853,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int state_middle=0x010100a5;
- /** State identifier indicating a TextView has a multi-line layout.
+ /** State identifier indicating a TextView has a multi-line layout.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15863,7 +15863,7 @@ containing a value of this type.
*/
public static final int state_multiline=0x0101034d;
/** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
- set when the user is pressing down in a view.
+ set when the user is pressing down in a view.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15873,7 +15873,7 @@ containing a value of this type.
*/
public static final int state_pressed=0x010100a7;
/** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
- set when a view (or one of its parents) is currently selected.
+ set when a view (or one of its parents) is currently selected.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15884,7 +15884,7 @@ containing a value of this type.
public static final int state_selected=0x010100a1;
/** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
set when a view or drawable is considered "single" by its host. Actual usage may vary
- between views. Consult the host view documentation for details.
+ between views. Consult the host view documentation for details.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15895,7 +15895,7 @@ containing a value of this type.
public static final int state_single=0x010100a3;
public static final int state_ux_restricted=0x0116018e;
/** State value for {@link android.graphics.drawable.StateListDrawable StateListDrawable},
- set when a view's window has input focus.
+ set when a view's window has input focus.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15904,7 +15904,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int state_window_focused=0x0101009d;
- /** A resource id of a static drawable.
+ /** A resource id of a static drawable.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -15926,7 +15926,7 @@ or to a theme attribute in the form "?[package:][type:]na
{@link android.os.Build.VERSION_CODES#VANILLA_ICE_CREAM VANILLA_ICE_CREAM} or above,
this attribute is ignored.
@deprecated Draw proper background behind
- {@link android.view.WindowInsets.Type#statusBars()}} instead.
+ {@link android.view.WindowInsets.Type#statusBars()}} instead.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -15937,7 +15937,7 @@ containing a value of this type.
*/
@Deprecated
public static final int statusBarColor=0x01010451;
- /** The step size of the rating.
+ /** The step size of the rating.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15948,7 +15948,7 @@ containing a value of this type.
public static final int stepSize=0x01010146;
/** If set to true, this service with be automatically stopped
when the user remove a task rooted in an activity owned by
- the application. The default is false.
+ the application. The default is false.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15958,7 +15958,7 @@ containing a value of this type.
*/
public static final int stopWithTask=0x0101036a;
public static final int storageDescription=0x0116014d;
- /** Different audio stream types.
+ /** Different audio stream types.
Must be one of the following constant values.
@@ -15977,7 +15977,7 @@ containing a value of this type.
must be separated by a comma: 1, 2, 5. Illegal and duplicate
indices are ignored. You can stretch all columns by using the
value "*" instead. Note that a column can be marked stretchable
- and shrinkable at the same time.
+ and shrinkable at the same time.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -15986,7 +15986,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int stretchColumns=0x01010149;
- /** Defines how columns should stretch to fill the available empty space, if any.
+ /** Defines how columns should stretch to fill the available empty space, if any.
Must be one of the following constant values.
@@ -16001,7 +16001,7 @@ containing a value of this type.
*/
public static final int stretchMode=0x01010116;
/** The opacity of a path stroke, as a value between 0 (completely transparent)
- and 1 (completely opaque).
+ and 1 (completely opaque).
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16010,7 +16010,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int strokeAlpha=0x010104cb;
- /** The color to stroke the path if not defined implies no stroke.
+ /** The color to stroke the path if not defined implies no stroke.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -16020,7 +16020,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int strokeColor=0x01010406;
- /** sets the linecap for a stroked path.
+ /** sets the linecap for a stroked path.
Must be one of the following constant values.
@@ -16033,7 +16033,7 @@ containing a value of this type.
*/
public static final int strokeLineCap=0x0101040b;
- /** sets the lineJoin for a stroked path.
+ /** sets the lineJoin for a stroked path.
Must be one of the following constant values.
@@ -16046,7 +16046,7 @@ containing a value of this type.
*/
public static final int strokeLineJoin=0x0101040c;
- /** sets the Miter limit for a stroked path.
+ /** sets the Miter limit for a stroked path.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16055,7 +16055,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int strokeMiterLimit=0x0101040d;
- /** The width a path stroke.
+ /** The width a path stroke.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16065,17 +16065,17 @@ containing a value of this type.
*/
public static final int strokeWidth=0x01010407;
public static final int stylusHandwritingSettingsActivity=0x011600c0;
- /** Drawable for the arrow icon indicating a particular item is a submenu.
+ /** Drawable for the arrow icon indicating a particular item is a submenu.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int subMenuArrow=0x010104f3;
- /** Background for the section containing the action (for example, voice search).
+ /** Background for the section containing the action (for example, voice search).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int submitBackground=0x01010488;
- /** Specifies subtitle text used for navigationMode="normal".
+ /** Specifies subtitle text used for navigationMode="normal".
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16088,7 +16088,7 @@ containing a value of this type.
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int subtitleTextAppearance=0x0101042f;
- /** A color to apply to the subtitle string.
+ /** A color to apply to the subtitle string.
Must be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
This may also be a reference to a resource (in the form
@@ -16098,13 +16098,13 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int subtitleTextColor=0x010104e4;
- /** Specifies a style to use for subtitle text.
+ /** Specifies a style to use for subtitle text.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int subtitleTextStyle=0x010102f9;
/** The extra value of the subtype. This string can be any string and will be passed to
- the SpellChecker.
+ the SpellChecker.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16117,7 +16117,7 @@ containing a value of this type.
subtypes by ID. When the IME package gets upgraded, enabled IDs will stay enabled even
if other attributes are different. If the ID is unspecified (by calling the other
constructor or 0. Arrays.hashCode(new Object[] {locale, mode, extraValue,
- isAuxiliary, overridesImplicitlyEnabledSubtype}) will be used instead.
+ isAuxiliary, overridesImplicitlyEnabledSubtype}) will be used instead.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16129,7 +16129,7 @@ containing a value of this type.
/** The locale of the subtype. This string should be a locale (for example, en_US and
fr_FR). This is also used by the framework to know the supported locales
of the spell checker. {@link android.view.textservice.SpellCheckerSubtype#getLocale()}
- returns the value specified in this attribute.
+ returns the value specified in this attribute.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16146,7 +16146,7 @@ containing a value of this type.
{@link android.content.Intent#ACTION_SEARCH ACTION_SEARCH} intent that is passed to your
searchable activity. To examine the string, use
{@link android.content.Intent#getStringExtra getStringExtra(SearchManager.ACTION_MSG)}.
- Optional attribute.
+ Optional attribute.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16168,7 +16168,7 @@ containing a value of this type.
your searchable activity. To examine the string, use
{@link android.content.Intent#getStringExtra
getStringExtra(SearchManager.ACTION_MSG)}. If the data does not exist for the
- selection suggestion, the action key will be ignored.Optional attribute.
+ selection suggestion, the action key will be ignored.Optional attribute.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16177,12 +16177,12 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int suggestActionMsgColumn=0x010101dd;
- /** Layout for query suggestion rows.
+ /** Layout for query suggestion rows.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int suggestionRowLayout=0x01010486;
- /** The summary for the item.
+ /** The summary for the item.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16191,7 +16191,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int summary=0x010101e9;
- /** Column in data table that summarizes this data.
+ /** Column in data table that summarizes this data.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16202,7 +16202,7 @@ containing a value of this type.
public static final int summaryColumn=0x010102a2;
/** The summary for the Preference in a PreferenceActivity screen when the
CheckBoxPreference is unchecked. If separate on/off summaries are not
- needed, the summary attribute can be used instead.
+ needed, the summary attribute can be used instead.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16213,7 +16213,7 @@ containing a value of this type.
public static final int summaryOff=0x010101f0;
/** The summary for the Preference in a PreferenceActivity screen when the
CheckBoxPreference is checked. If separate on/off summaries are not
- needed, the summary attribute can be used instead.
+ needed, the summary attribute can be used instead.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16223,10 +16223,10 @@ containing a value of this type.
*/
public static final int summaryOn=0x010101ef;
public static final int supportedTypes=0x01160169;
- /** @hide
+ /** @hide
Wallpapers optimized and capable of drawing in ambient mode will return true.
This feature requires the android.permission.AMBIENT_WALLPAPER permission.
- @hide
+ @hide
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16237,7 +16237,7 @@ containing a value of this type.
@android.annotation.SystemApi
public static final int supportsAmbientMode=0x0101058d;
/** Flag indicating whether this voice interaction service is capable of handling the
- assist action.
+ assist action.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16248,7 +16248,7 @@ containing a value of this type.
public static final int supportsAssist=0x010104f0;
public static final int supportsBatteryGameMode=0x0116012a;
public static final int supportsConnectionlessStylusHandwriting=0x011600bf;
- /** Specifies whether the IME supports showing inline suggestions.
+ /** Specifies whether the IME supports showing inline suggestions.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16265,7 +16265,7 @@ containing a value of this type.
public static final int supportsInlineSuggestions=0x0101060d;
public static final int supportsInlineSuggestionsWithTouchExploration=0x011600bd;
/** Flag indicating whether this voice interaction service is capable of being launched
- from the keyguard.
+ from the keyguard.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16276,7 +16276,7 @@ containing a value of this type.
public static final int supportsLaunchVoiceAssistFromKeyguard=0x010104f1;
/** Flag indicating whether this voice interaction service can handle local voice
interaction requests from an Activity. This flag is new in
- {@link android.os.Build.VERSION_CODES#N} and not used in previous versions.
+ {@link android.os.Build.VERSION_CODES#N} and not used in previous versions.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16288,7 +16288,7 @@ containing a value of this type.
/** Indicates that this wallpaper service can support multiple engines to render on each
surface independently. An example use case is a multi-display set-up where the
wallpaper service can render surfaces to each of the connected displays. Corresponds to
- {@link android.app.WallpaperInfo#supportsMultipleDisplays()}
+ {@link android.app.WallpaperInfo#supportsMultipleDisplays()}
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16306,7 +16306,7 @@ containing a value of this type.
Note that your activity may still be resized even if this attribute is true and
{@link android.R.attr#resizeableActivity} is false.
-
The default value is false
.
+
The default value is false
.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16316,7 +16316,7 @@ containing a value of this type.
*/
public static final int supportsPictureInPicture=0x010104f7;
/** Declare that your application will be able to deal with RTL (right to left) layouts.
- The default value is false.
+ The default value is false.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16333,7 +16333,7 @@ containing a value of this type.
accordingly.
Note that the system determines the most appropriate next input method
and subtype in order to provide the consistent user experience in switching
- between IMEs and subtypes.
+ between IMEs and subtypes.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16353,7 +16353,7 @@ containing a value of this type.
/** Specifies whether the IME suppresses system spell checker.
The default value is false. If an IME sets this attribute to true,
the system spell checker will be disabled while the IME has an
- active input session.
+ active input session.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16362,7 +16362,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int suppressesSpellChecker=0x01010643;
- /** Minimum width for the switch component.
+ /** Minimum width for the switch component.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -16373,7 +16373,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int switchMinWidth=0x01010370;
- /** Minimum space between the switch and caption text.
+ /** Minimum space between the switch and caption text.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp
".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@@ -16384,23 +16384,23 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int switchPadding=0x01010371;
- /** Default style for switch preferences.
+ /** Default style for switch preferences.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int switchPreferenceStyle=0x0101036d;
- /** Default style for the Switch widget.
+ /** Default style for the Switch widget.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int switchStyle=0x0101043f;
- /** TextAppearance style for text displayed on the switch thumb.
+ /** TextAppearance style for text displayed on the switch thumb.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int switchTextAppearance=0x0101036e;
/** The text used on the switch itself when in the "off" state.
- This should be a very SHORT string, as it appears in a small space.
+ This should be a very SHORT string, as it appears in a small space.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16410,7 +16410,7 @@ containing a value of this type.
*/
public static final int switchTextOff=0x0101036c;
/** The text used on the switch itself when in the "on" state.
- This should be a very SHORT string, as it appears in a small space.
+ This should be a very SHORT string, as it appears in a small space.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16420,7 +16420,7 @@ containing a value of this type.
*/
public static final int switchTextOn=0x0101036b;
/** Flag indicating whether this content provider would like to
- participate in data synchronization.
+ participate in data synchronization.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16431,7 +16431,7 @@ containing a value of this type.
public static final int syncable=0x01010019;
public static final int systemUserOnly=0x01160190;
public static final int tabLayout=0x011600dd;
- /** Determines whether the strip under the tab indicators is drawn or not.
+ /** Determines whether the strip under the tab indicators is drawn or not.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16440,17 +16440,17 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int tabStripEnabled=0x010102bd;
- /** Drawable used to draw the left part of the strip underneath the tabs.
+ /** Drawable used to draw the left part of the strip underneath the tabs.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int tabStripLeft=0x010102bb;
- /** Drawable used to draw the right part of the strip underneath the tabs.
+ /** Drawable used to draw the right part of the strip underneath the tabs.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int tabStripRight=0x010102bc;
- /** Default TabWidget style.
+ /** Default TabWidget style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -16460,7 +16460,7 @@ or to a theme attribute in the form "?[package:][type:]na
searched for with {@link android.view.View#findViewWithTag
View.findViewWithTag()}. It is generally preferable to use
IDs (through the android:id attribute) instead of tags because
- they are faster and allow for compile-time type checking.
+ they are faster and allow for compile-time type checking.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16482,7 +16482,7 @@ containing a value of this type.
*/
public static final int tag=0x010100d1;
/** Fully qualified class name of an activity that allows the user to view
- their entire wallet
+ their entire wallet
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16497,7 +16497,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int targetActivity=0x01010202;
- /** Default height of the AppWidget in units of launcher grid cells.
+ /** Default height of the AppWidget in units of launcher grid cells.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16506,7 +16506,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int targetCellHeight=0x01010635;
- /** Default width of the AppWidget in units of launcher grid cells.
+ /** Default width of the AppWidget in units of launcher grid cells.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16516,7 +16516,7 @@ containing a value of this type.
*/
public static final int targetCellWidth=0x01010634;
/** The class part of the ComponentName to assign to the Intent, as per
- {@link android.content.Intent#setComponent Intent.setComponent()}.
+ {@link android.content.Intent#setComponent Intent.setComponent()}.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16525,20 +16525,20 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int targetClass=0x0101002f;
- /** @deprecated Removed.
+ /** @deprecated Removed.
Reference to an array resource that be used as description for the targets around the circle.
- {@deprecated Removed.}
+ {@deprecated Removed.}
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@Deprecated
public static final int targetDescriptions=0x010103a0;
- /** The id of a target on which this transition will animate changes.
+ /** The id of a target on which this transition will animate changes.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int targetId=0x010103dc;
- /** The transitionName of the target on which this transition will animation changes.
+ /** The transitionName of the target on which this transition will animation changes.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16548,7 +16548,7 @@ containing a value of this type.
*/
public static final int targetName=0x0101044d;
/** The name of the application package that an Instrumentation object
- will run against.
+ will run against.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16560,7 +16560,7 @@ containing a value of this type.
/** The name of an application's processes that an Instrumentation object
will run against. If not specified, only runs in the main process of the targetPackage.
Can either be a comma-separated list of process names or '*' for any process that
- launches to run targetPackage code.
+ launches to run targetPackage code.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16575,7 +16575,7 @@ containing a value of this type.
The default value of this attribute is 1
.
@deprecated The security properties have been moved to
- {@link android.os.Build.VERSION Build.VERSION} 27 and 28.
+ {@link android.os.Build.VERSION Build.VERSION} 27 and 28.
Must be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16593,7 +16593,7 @@ containing a value of this type.
available to older applications. This may also be a string
(such as "Donut") if this is built against a development
branch, in which case minSdkVersion is also forced to be that
- string.
+ string.
May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
May be an integer value, such as "100
".
This may also be a reference to a resource (in the form
@@ -16614,7 +16614,7 @@ containing a value of this type.
attribute to modify that behavior: either giving them an affinity
for another task, if the activities are intended to be part of that
task from the user's perspective, or using an empty string for
- activities that have no affinity to a task.
+ activities that have no affinity to a task.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16624,58 +16624,58 @@ containing a value of this type.
*/
public static final int taskAffinity=0x01010012;
/** When closing the last activity of a task, this is the animation that is
- run on the activity of the next task (which is entering the screen).
+ run on the activity of the next task (which is entering the screen).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int taskCloseEnterAnimation=0x010100be;
/** When opening an activity in a new task, this is the animation that is
- run on the activity of the old task (which is exiting the screen).
+ run on the activity of the old task (which is exiting the screen).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int taskCloseExitAnimation=0x010100bf;
/** When opening an activity in a new task, this is the animation that is
- run on the activity of the new task (which is entering the screen).
+ run on the activity of the new task (which is entering the screen).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int taskOpenEnterAnimation=0x010100bc;
/** When opening an activity in a new task, this is the animation that is
- run on the activity of the old task (which is exiting the screen).
+ run on the activity of the old task (which is exiting the screen).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int taskOpenExitAnimation=0x010100bd;
/** When sending the current task to the background, this is the
animation that is run on the top activity of the task behind
- it (which is entering the screen).
+ it (which is entering the screen).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int taskToBackEnterAnimation=0x010100c2;
/** When sending the current task to the background, this is the
animation that is run on the top activity of the current task
- (which is exiting the screen).
+ (which is exiting the screen).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int taskToBackExitAnimation=0x010100c3;
/** When bringing an existing task to the foreground, this is the
animation that is run on the top activity of the task being brought
- to the foreground (which is entering the screen).
+ to the foreground (which is entering the screen).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int taskToFrontEnterAnimation=0x010100c0;
/** When bringing an existing task to the foreground, this is the
animation that is run on the current foreground activity
- (which is exiting the screen).
+ (which is exiting the screen).
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int taskToFrontExitAnimation=0x010100c1;
- /** This is the amount of tension.
+ /** This is the amount of tension.
Must be a floating point value, such as "1.2
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16688,7 +16688,7 @@ containing a value of this type.
For example, it may expose functionality or data outside of itself
that would cause a security hole, but is useful for testing. This
kind of application can not be installed without the
- INSTALL_ALLOW_TEST flag, which means only through adb install.
+ INSTALL_ALLOW_TEST flag, which means only through adb install.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16697,7 +16697,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int testOnly=0x01010272;
- /** Text to display.
+ /** Text to display.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16706,7 +16706,7 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int text=0x0101014f;
- /** Defines the alignment of the text.
+ /** Defines the alignment of the text.
May be an integer value, such as "100
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16733,7 +16733,7 @@ containing a value of this type.
*/
public static final int textAlignment=0x010103b1;
- /** Present the text in ALL CAPS. This may use a small-caps form when available.
+ /** Present the text in ALL CAPS. This may use a small-caps form when available.
Must be a boolean value, either "true
" or "false
".
This may also be a reference to a resource (in the form
"@[package:]type:name
") or
@@ -16742,13 +16742,13 @@ theme attribute (in the form
containing a value of this type.
*/
public static final int textAllCaps=0x0101038c;
- /** Default appearance of text: color, typeface, size, and style.
+ /** Default appearance of text: color, typeface, size, and style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearance=0x01010034;
public static final int textAppearanceAutoCorrectionSuggestion=0x0116000c;
- /** Text color, typeface, size, and style for the text inside of a button.
+ /** Text color, typeface, size, and style for the text inside of a button.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -16756,83 +16756,83 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int textAppearanceEasyCorrectSuggestion=0x0116000a;
public static final int textAppearanceGrammarErrorSuggestion=0x0116000d;
/** Default appearance of text against an inverted background:
- color, typeface, size, and style.
+ color, typeface, size, and style.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearanceInverse=0x01010035;
- /** Text color, typeface, size, and style for "large" text. Defaults to primary text color.
+ /** Text color, typeface, size, and style for "large" text. Defaults to primary text color.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearanceLarge=0x01010040;
- /** Text color, typeface, size, and style for "large" inverse text. Defaults to primary inverse text color.
+ /** Text color, typeface, size, and style for "large" inverse text. Defaults to primary inverse text color.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearanceLargeInverse=0x01010043;
- /** Text color, typeface, size, and style for the text inside of a popup menu.
+ /** Text color, typeface, size, and style for the text inside of a popup menu.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearanceLargePopupMenu=0x01010301;
- /** The preferred TextAppearance for the primary text of list items.
+ /** The preferred TextAppearance for the primary text of list items.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearanceListItem=0x0101039e;
- /** The preferred TextAppearance for the secondary text of list items.
+ /** The preferred TextAppearance for the secondary text of list items.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearanceListItemSecondary=0x01010432;
- /** The preferred TextAppearance for the primary text of small list items.
+ /** The preferred TextAppearance for the primary text of small list items.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearanceListItemSmall=0x0101039f;
- /** Text color, typeface, size, and style for "medium" text. Defaults to primary text color.
+ /** Text color, typeface, size, and style for "medium" text. Defaults to primary text color.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearanceMedium=0x01010041;
- /** Text color, typeface, size, and style for "medium" inverse text. Defaults to primary inverse text color.
+ /** Text color, typeface, size, and style for "medium" inverse text. Defaults to primary inverse text color.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearanceMediumInverse=0x01010044;
public static final int textAppearanceMisspelledSuggestion=0x0116000b;
- /** Text color, typeface, size, and style for header text inside of a popup menu.
+ /** Text color, typeface, size, and style for header text inside of a popup menu.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearancePopupMenuHeader=0x01010502;
- /** Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color.
+ /** Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearanceSearchResultSubtitle=0x010102a0;
- /** Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color.
+ /** Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearanceSearchResultTitle=0x010102a1;
- /** Text color, typeface, size, and style for "small" text. Defaults to secondary text color.
+ /** Text color, typeface, size, and style for "small" text. Defaults to secondary text color.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearanceSmall=0x01010042;
- /** Text color, typeface, size, and style for "small" inverse text. Defaults to secondary inverse text color.
+ /** Text color, typeface, size, and style for "small" inverse text. Defaults to secondary inverse text color.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearanceSmallInverse=0x01010045;
- /** Text color, typeface, size, and style for small text inside of a popup menu.
+ /** Text color, typeface, size, and style for small text inside of a popup menu.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textAppearanceSmallPopupMenu=0x01010302;
- /** Drawable to use for check marks.
+ /** Drawable to use for check marks.
Must be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
*/
@@ -16841,56 +16841,56 @@ or to a theme attribute in the form "?[package:][type:]na
or to a theme attribute in the form "?[package:][type:]name
".
*/
public static final int textCheckMarkInverse=0x01010047;
- /** Color of text (usually same as colorForeground).
+ /** Color of text (usually same as colorForeground).
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int textColor=0x01010098;
- /** Color of list item text in alert dialogs.
+ /** Color of list item text in alert dialogs.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int textColorAlertDialogListItem=0x01010306;
- /** Color of highlighted text.
+ /** Color of highlighted text.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int textColorHighlight=0x01010099;
- /** Color of highlighted text, when used in a light theme.
+ /** Color of highlighted text, when used in a light theme.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int textColorHighlightInverse=0x0101034f;
- /** Color of hint text (displayed when the field is empty).
+ /** Color of hint text (displayed when the field is empty).
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int textColorHint=0x0101009a;
- /** Inverse hint text color.
+ /** Inverse hint text color.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int textColorHintInverse=0x0101003f;
- /** Color of link text (URLs).
+ /** Color of link text (URLs).
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int textColorLink=0x0101009b;
- /** Color of link text (URLs), when used in a light theme.
+ /** Color of link text (URLs), when used in a light theme.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -16898,7 +16898,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int textColorLinkInverse=0x01010350;
public static final int textColorOnAccent=0x01160042;
- /** The most prominent text color.
+ /** The most prominent text color.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -16906,28 +16906,28 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int textColorPrimary=0x01010036;
public static final int textColorPrimaryActivated=0x01160006;
- /** Bright text color. Only differentiates based on the disabled state.
+ /** Bright text color. Only differentiates based on the disabled state.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int textColorPrimaryDisableOnly=0x01010037;
- /** Primary inverse text color, useful for inverted backgrounds.
+ /** Primary inverse text color, useful for inverted backgrounds.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int textColorPrimaryInverse=0x01010039;
- /** Bright inverse text color. Only differentiates based on the disabled state.
+ /** Bright inverse text color. Only differentiates based on the disabled state.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
"#rrggbb
", or "#aarrggbb
".
*/
public static final int textColorPrimaryInverseDisableOnly=0x0101028b;
- /** Bright inverse text color. This does not differentiate the disabled state.
+ /** Bright inverse text color. This does not differentiate the disabled state.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -16936,7 +16936,7 @@ or to a theme attribute in the form "?[package:][type:]na
public static final int textColorPrimaryInverseNoDisable=0x0101003d;
/** Bright text color. This does not differentiate the disabled state. As an example,
buttons use this since they display the disabled state via the background and not the
- foreground text color.
+ foreground text color.
May be a reference to another resource, in the form "@[+][package:]type:name
"
or to a theme attribute in the form "?[package:][type:]name
".
May be a color value, in the form of "#rgb
", "#argb
",
@@ -16944,7 +16944,7 @@ or to a theme attribute in the form "?[package:][type:]na
*/
public static final int textColorPrimaryNoDisable=0x0101003b;
public static final int textColorSearchUrl=0x01160008;
- /** Secondary text color.
+ /** Secondary text color.
May be a reference to another resource, in the form "