MultiAutoCompleteTextView Class

Definition

An editable text view, extending AutoCompleteTextView, that can show completion suggestions for the substring of the text where the user is typing instead of necessarily for the entire thing.

[Android.Runtime.Register("android/widget/MultiAutoCompleteTextView", DoNotGenerateAcw=true)]
public class MultiAutoCompleteTextView : Android.Widget.AutoCompleteTextView
[<Android.Runtime.Register("android/widget/MultiAutoCompleteTextView", DoNotGenerateAcw=true)>]
type MultiAutoCompleteTextView = class
    inherit AutoCompleteTextView
Inheritance
Attributes

Remarks

An editable text view, extending AutoCompleteTextView, that can show completion suggestions for the substring of the text where the user is typing instead of necessarily for the entire thing.

You must provide a Tokenizer to distinguish the various substrings.

The following code snippet shows how to create a text view which suggests various countries names while the user is typing:

public class CountriesActivity extends Activity {
                protected void onCreate(Bundle savedInstanceState) {
                    super.onCreate(savedInstanceState);
                    setContentView(R.layout.autocomplete_7);

                    ArrayAdapter&lt;String&gt; adapter = new ArrayAdapter&lt;String&gt;(this,
                            android.R.layout.simple_dropdown_item_1line, COUNTRIES);
                    MultiAutoCompleteTextView textView = findViewById(R.id.edit);
                    textView.setAdapter(adapter);
                    textView.setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer());
                }

                private static final String[] COUNTRIES = new String[] {
                    "Belgium", "France", "Italy", "Germany", "Spain"
                };
            }

Java documentation for android.widget.MultiAutoCompleteTextView.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Constructors

MultiAutoCompleteTextView(Context)
MultiAutoCompleteTextView(Context, IAttributeSet)
MultiAutoCompleteTextView(Context, IAttributeSet, Int32)
MultiAutoCompleteTextView(Context, IAttributeSet, Int32, Int32)
MultiAutoCompleteTextView(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

Fields

AccessibilityDataSensitiveAuto
Obsolete.

Automatically determine whether the view should only allow interactions from android.accessibilityservice.AccessibilityServices with the android.accessibilityservice.AccessibilityServiceInfo#isAccessibilityTool property set to true.

(Inherited from View)
AccessibilityDataSensitiveNo
Obsolete.

Allow interactions from all android.accessibilityservice.AccessibilityServices, regardless of their android.accessibilityservice.AccessibilityServiceInfo#isAccessibilityTool property.

(Inherited from View)
AccessibilityDataSensitiveYes
Obsolete.

Only allow interactions from android.accessibilityservice.AccessibilityServices with the android.accessibilityservice.AccessibilityServiceInfo#isAccessibilityTool property set to true.

(Inherited from View)
AccessibilityLiveRegionAssertive
Obsolete.

Live region mode specifying that accessibility services should interrupt ongoing speech to immediately announce changes to this view.

(Inherited from View)
AccessibilityLiveRegionNone
Obsolete.

Live region mode specifying that accessibility services should not automatically announce changes to this view.

(Inherited from View)
AccessibilityLiveRegionPolite
Obsolete.

Live region mode specifying that accessibility services should announce changes to this view.

(Inherited from View)
AutofillFlagIncludeNotImportantViews
Obsolete.

Flag requesting you to add views that are marked as not important for autofill (see #setImportantForAutofill(int)) to a ViewStructure.

(Inherited from View)
AutofillHintCreditCardExpirationDate

Hint indicating that this view can be autofilled with a credit card expiration date.

(Inherited from View)
AutofillHintCreditCardExpirationDay

Hint indicating that this view can be autofilled with a credit card expiration day.

(Inherited from View)
AutofillHintCreditCardExpirationMonth

Hint indicating that this view can be autofilled with a credit card expiration month.

(Inherited from View)
AutofillHintCreditCardExpirationYear

Hint indicating that this view can be autofilled with a credit card expiration year.

(Inherited from View)
AutofillHintCreditCardNumber

Hint indicating that this view can be autofilled with a credit card number.

(Inherited from View)
AutofillHintCreditCardSecurityCode

Hint indicating that this view can be autofilled with a credit card security code.

(Inherited from View)
AutofillHintEmailAddress

Hint indicating that this view can be autofilled with an email address.

(Inherited from View)
AutofillHintName

Hint indicating that this view can be autofilled with a user's real name.

(Inherited from View)
AutofillHintPassword

Hint indicating that this view can be autofilled with a password.

(Inherited from View)
AutofillHintPhone

Hint indicating that this view can be autofilled with a phone number.

(Inherited from View)
AutofillHintPostalAddress

Hint indicating that this view can be autofilled with a postal address.

(Inherited from View)
AutofillHintPostalCode

Hint indicating that this view can be autofilled with a postal code.

(Inherited from View)
AutofillHintUsername

Hint indicating that this view can be autofilled with a username.

(Inherited from View)
AutofillTypeDate
Obsolete.

Autofill type for a field that contains a date, which is represented by a long representing the number of milliseconds since the standard base time known as "the epoch", namely January 1, 1970, 00:00:00 GMT (see java.util.Date#getTime().

(Inherited from View)
AutofillTypeList
Obsolete.

Autofill type for a selection list field, which is filled by an int representing the element index inside the list (starting at 0).

(Inherited from View)
AutofillTypeNone
Obsolete.

Autofill type for views that cannot be autofilled.

(Inherited from View)
AutofillTypeText
Obsolete.

Autofill type for a text field, which is filled by a CharSequence.

(Inherited from View)
AutofillTypeToggle
Obsolete.

Autofill type for a togglable field, which is filled by a boolean.

(Inherited from View)
DragFlagAccessibilityAction
Obsolete.

Flag indicating that the drag was initiated with AccessibilityNodeInfo.AccessibilityAction#ACTION_DRAG_START.

(Inherited from View)
DragFlagGlobal
Obsolete.

Flag indicating that a drag can cross window boundaries.

(Inherited from View)
DragFlagGlobalPersistableUriPermission
Obsolete.

When this flag is used with #DRAG_FLAG_GLOBAL_URI_READ and/or #DRAG_FLAG_GLOBAL_URI_WRITE, the URI permission grant can be persisted across device reboots until explicitly revoked with android.content.Context#revokeUriPermission(Uri, int) Context.

(Inherited from View)
DragFlagGlobalPrefixUriPermission
Obsolete.

When this flag is used with #DRAG_FLAG_GLOBAL_URI_READ and/or #DRAG_FLAG_GLOBAL_URI_WRITE, the URI permission grant applies to any URI that is a prefix match against the original granted URI.

(Inherited from View)
DragFlagGlobalUriRead
Obsolete.

When this flag is used with #DRAG_FLAG_GLOBAL, the drag recipient will be able to request read access to the content URI(s) contained in the ClipData object.

(Inherited from View)
DragFlagGlobalUriWrite
Obsolete.

When this flag is used with #DRAG_FLAG_GLOBAL, the drag recipient will be able to request write access to the content URI(s) contained in the ClipData object.

(Inherited from View)
DragFlagOpaque
Obsolete.

Flag indicating that the drag shadow will be opaque.

(Inherited from View)
FindViewsWithContentDescription
Obsolete.

Find find views that contain the specified content description.

(Inherited from View)
FocusableAuto
Obsolete.

This view determines focusability automatically.

(Inherited from View)
FocusedSearchResultIndexNone

A special index used for #setFocusedSearchResultIndex(int) and #getFocusedSearchResultIndex() inidicating there is no focused search result.

(Inherited from TextView)
ImportantForAccessibilityAuto
Obsolete.

Automatically determine whether a view is important for accessibility.

(Inherited from View)
ImportantForAccessibilityNo
Obsolete.

The view is not important for accessibility.

(Inherited from View)
ImportantForAccessibilityNoHideDescendants
Obsolete.

The view is not important for accessibility, nor are any of its descendant views.

(Inherited from View)
ImportantForAccessibilityYes
Obsolete.

The view is important for accessibility.

(Inherited from View)
ImportantForAutofillAuto
Obsolete.

Automatically determine whether a view is important for autofill.

(Inherited from View)
ImportantForAutofillNo
Obsolete.

The view is not important for autofill, but its children (if any) will be traversed.

(Inherited from View)
ImportantForAutofillNoExcludeDescendants
Obsolete.

The view is not important for autofill, and its children (if any) will not be traversed.

(Inherited from View)
ImportantForAutofillYes
Obsolete.

The view is important for autofill, and its children (if any) will be traversed.

(Inherited from View)
ImportantForAutofillYesExcludeDescendants
Obsolete.

The view is important for autofill, but its children (if any) will not be traversed.

(Inherited from View)
ImportantForContentCaptureAuto
Obsolete.

Automatically determine whether a view is important for content capture.

(Inherited from View)
ImportantForContentCaptureNo
Obsolete.

The view is not important for content capture, but its children (if any) will be traversed.

(Inherited from View)
ImportantForContentCaptureNoExcludeDescendants
Obsolete.

The view is not important for content capture, and its children (if any) will not be traversed.

(Inherited from View)
ImportantForContentCaptureYes
Obsolete.

The view is important for content capture, and its children (if any) will be traversed.

(Inherited from View)
ImportantForContentCaptureYesExcludeDescendants
Obsolete.

The view is important for content capture, but its children (if any) will not be traversed.

(Inherited from View)
LayoutDirectionInherit
Obsolete.

Horizontal layout direction of this view is inherited from its parent.

(Inherited from View)
LayoutDirectionLocale
Obsolete.

Horizontal layout direction of this view is from deduced from the default language script for the locale.

(Inherited from View)
LayoutDirectionLtr
Obsolete.

Horizontal layout direction of this view is from Left to Right.

(Inherited from View)
LayoutDirectionRtl
Obsolete.

Horizontal layout direction of this view is from Right to Left.

(Inherited from View)
MeasuredHeightStateShift

Bit shift of #MEASURED_STATE_MASK to get to the height bits for functions that combine both width and height into a single int, such as #getMeasuredState() and the childState argument of #resolveSizeAndState(int, int, int).

(Inherited from View)
MeasuredSizeMask

Bits of #getMeasuredWidthAndState() and #getMeasuredWidthAndState() that provide the actual measured size.

(Inherited from View)
MeasuredStateMask

Bits of #getMeasuredWidthAndState() and #getMeasuredWidthAndState() that provide the additional state bits.

(Inherited from View)
MeasuredStateTooSmall

Bit of #getMeasuredWidthAndState() and #getMeasuredWidthAndState() that indicates the measured size is smaller that the space the view would like to have.

(Inherited from View)
NoId

Used to mark a View that has no ID.

(Inherited from View)
NotFocusable
Obsolete.

This view does not want keystrokes.

(Inherited from View)
OverScrollAlways
Obsolete.

Always allow a user to over-scroll this view, provided it is a view that can scroll.

(Inherited from View)
OverScrollIfContentScrolls
Obsolete.

Allow a user to over-scroll this view only if the content is large enough to meaningfully scroll, provided it is a view that can scroll.

(Inherited from View)
OverScrollNever
Obsolete.

Never allow a user to over-scroll this view.

(Inherited from View)
ScreenStateOff
Obsolete.

Indicates that the screen has changed state and is now off.

(Inherited from View)
ScreenStateOn
Obsolete.

Indicates that the screen has changed state and is now on.

(Inherited from View)
ScrollAxisHorizontal
Obsolete.

Indicates scrolling along the horizontal axis.

(Inherited from View)
ScrollAxisNone
Obsolete.

Indicates no axis of view scrolling.

(Inherited from View)
ScrollAxisVertical
Obsolete.

Indicates scrolling along the vertical axis.

(Inherited from View)
ScrollCaptureHintAuto
Obsolete.

The content of this view will be considered for scroll capture if scrolling is possible.

(Inherited from View)
ScrollCaptureHintExclude
Obsolete.

Explicitly exclude this view as a potential scroll capture target.

(Inherited from View)
ScrollCaptureHintExcludeDescendants
Obsolete.

Explicitly exclude all children of this view as potential scroll capture targets.

(Inherited from View)
ScrollCaptureHintInclude
Obsolete.

Explicitly include this view as a potential scroll capture target.

(Inherited from View)
SystemUiFlagFullscreen

Flag for #setSystemUiVisibility(int): View has requested to go into the normal fullscreen mode so that its content can take over the screen while still allowing the user to interact with the application.

(Inherited from View)
SystemUiFlagHideNavigation

Flag for #setSystemUiVisibility(int): View has requested that the system navigation be temporarily hidden.

(Inherited from View)
SystemUiFlagImmersive

Flag for #setSystemUiVisibility(int): View would like to remain interactive when hiding the navigation bar with #SYSTEM_UI_FLAG_HIDE_NAVIGATION.

(Inherited from View)
SystemUiFlagImmersiveSticky

Flag for #setSystemUiVisibility(int): View would like to remain interactive when hiding the status bar with #SYSTEM_UI_FLAG_FULLSCREEN and/or hiding the navigation bar with #SYSTEM_UI_FLAG_HIDE_NAVIGATION.

(Inherited from View)
SystemUiFlagLayoutFullscreen

Flag for #setSystemUiVisibility(int): View would like its window to be laid out as if it has requested #SYSTEM_UI_FLAG_FULLSCREEN, even if it currently hasn't.

(Inherited from View)
SystemUiFlagLayoutHideNavigation

Flag for #setSystemUiVisibility(int): View would like its window to be laid out as if it has requested #SYSTEM_UI_FLAG_HIDE_NAVIGATION, even if it currently hasn't.

(Inherited from View)
SystemUiFlagLayoutStable

Flag for #setSystemUiVisibility(int): When using other layout flags, we would like a stable view of the content insets given to #fitSystemWindows(Rect).

(Inherited from View)
SystemUiFlagLightNavigationBar

Flag for #setSystemUiVisibility(int): Requests the navigation bar to draw in a mode that is compatible with light navigation bar backgrounds.

(Inherited from View)
SystemUiFlagLightStatusBar

Flag for #setSystemUiVisibility(int): Requests the status bar to draw in a mode that is compatible with light status bar backgrounds.

(Inherited from View)
SystemUiFlagLowProfile

Flag for #setSystemUiVisibility(int): View has requested the system UI to enter an unobtrusive "low profile" mode.

(Inherited from View)
SystemUiFlagVisible

Special constant for #setSystemUiVisibility(int): View has requested the system UI (status bar) to be visible (the default).

(Inherited from View)
SystemUiLayoutFlags

Flags that can impact the layout in relation to system UI.

(Inherited from View)
TextAlignmentCenter
Obsolete.

Center the paragraph, e.

(Inherited from View)
TextAlignmentGravity
Obsolete.

Default for the root view.

(Inherited from View)
TextAlignmentInherit
Obsolete.

Default text alignment.

(Inherited from View)
TextAlignmentResolvedDefault
Obsolete.

Default resolved text alignment

(Inherited from View)
TextAlignmentTextEnd
Obsolete.

Align to the end of the paragraph, e.

(Inherited from View)
TextAlignmentTextStart
Obsolete.

Align to the start of the paragraph, e.

(Inherited from View)
TextAlignmentViewEnd
Obsolete.

Align to the end of the view, which is ALIGN_RIGHT if the view's resolved layoutDirection is LTR, and ALIGN_LEFT otherwise.

(Inherited from View)
TextAlignmentViewStart
Obsolete.

Align to the start of the view, which is ALIGN_LEFT if the view's resolved layoutDirection is LTR, and ALIGN_RIGHT otherwise.

(Inherited from View)
TextDirectionAnyRtl
Obsolete.

Text direction is using "any-RTL" algorithm.

(Inherited from View)
TextDirectionFirstStrong
Obsolete.

Text direction is using "first strong algorithm".

(Inherited from View)
TextDirectionFirstStrongLtr
Obsolete.

Text direction is using "first strong algorithm".

(Inherited from View)
TextDirectionFirstStrongRtl
Obsolete.

Text direction is using "first strong algorithm".

(Inherited from View)
TextDirectionInherit
Obsolete.

Text direction is inherited through ViewGroup

(Inherited from View)
TextDirectionLocale
Obsolete.

Text direction is coming from the system Locale.

(Inherited from View)
TextDirectionLtr
Obsolete.

Text direction is forced to LTR.

(Inherited from View)
TextDirectionRtl
Obsolete.

Text direction is forced to RTL.

(Inherited from View)
ViewLogTag

The logging tag used by this class with android.

(Inherited from View)

Properties

AccessibilityClassName (Inherited from View)
AccessibilityClassNameFormatted

Return the class name of this object to be used for accessibility purposes.

(Inherited from View)
AccessibilityHeading

Gets whether this view is a heading for accessibility purposes. -or- Set if view is a heading for a section of content for accessibility purposes.

(Inherited from View)
AccessibilityLiveRegion

Gets the live region mode for this View. -or- Sets the live region mode for this view.

(Inherited from View)
AccessibilityNodeProvider

Gets the provider for managing a virtual view hierarchy rooted at this View and reported to android.accessibilityservice.AccessibilityServices that explore the window content.

(Inherited from View)
AccessibilityPaneTitle (Inherited from View)
AccessibilityPaneTitleFormatted

Get the title of the pane for purposes of accessibility. -or- Visually distinct portion of a window with window-like semantics are considered panes for accessibility purposes.

(Inherited from View)
AccessibilityTraversalAfter

Gets the id of a view after which this one is visited in accessibility traversal. -or- Sets the id of a view after which this one is visited in accessibility traversal.

(Inherited from View)
AccessibilityTraversalBefore

Gets the id of a view before which this one is visited in accessibility traversal. -or- Sets the id of a view before which this one is visited in accessibility traversal.

(Inherited from View)
Activated

Indicates the activation state of this view. -or- Changes the activated state of this view.

(Inherited from View)
Adapter

Returns a filterable list adapter used for auto completion. -or- Changes the list of data used for auto completion.

(Inherited from AutoCompleteTextView)
AllowedHandwritingDelegatePackageName

Returns the allowed package for delegate editor views for which this view may act as a handwriting delegator, as set by #setAllowedHandwritingDelegatePackage.

(Inherited from View)
AllowedHandwritingDelegatorPackageName

Returns the allowed package for views which may act as a handwriting delegator for this delegate editor view, as set by #setAllowedHandwritingDelegatorPackage.

(Inherited from View)
Alpha

The opacity of the view. -or- Sets the opacity of the view to a value from 0 to 1, where 0 means the view is completely transparent and 1 means the view is completely opaque.

(Inherited from View)
Animation

Get the animation currently associated with this view. -or- Sets the next animation to play for this view.

(Inherited from View)
AnimationMatrix

Return the current transformation matrix of the view. -or- Changes the transformation matrix on the view.

(Inherited from View)
ApplicationWindowToken

Retrieve a unique token identifying the top-level "real" window of the window that this view is attached to.

(Inherited from View)
ApplyWindowInsets (Inherited from View)
AttributeSourceResourceMap

Returns the mapping of attribute resource ID to source resource ID where the attribute value was set.

(Inherited from View)
AutofillId

Gets the unique, logical identifier of this view in the activity, for autofill purposes. -or- Sets the unique, logical identifier of this view in the activity, for autofill purposes.

(Inherited from View)
AutofillType

Describes the autofill type of this view, so an android.service.autofill.AutofillService can create the proper AutofillValue when autofilling the view.

(Inherited from View)
AutofillValue

Gets the View's current autofill value.

(Inherited from View)
AutoHandwritingEnabled

Return whether the View allows automatic handwriting initiation. -or- Set whether this view enables automatic handwriting initiation.

(Inherited from View)
AutoLinkMask

Gets the autolink mask of the text. -or- Sets the autolink mask of the text.

(Inherited from TextView)
AutoSizeMaxTextSize (Inherited from TextView)
AutoSizeMinTextSize (Inherited from TextView)
AutoSizeStepGranularity (Inherited from TextView)
AutoSizeTextType

Returns the type of auto-size set for this widget.

(Inherited from TextView)
Background

Gets the background drawable -or- Set the background to a given Drawable, or remove the background.

(Inherited from View)
BackgroundTintBlendMode

Return the blending mode used to apply the tint to the background drawable, if specified. -or- Specifies the blending mode used to apply the tint specified by #setBackgroundTintList(ColorStateList)} to the background drawable.

(Inherited from View)
BackgroundTintList

Return the tint applied to the background drawable, if specified. -or- Applies a tint to the background drawable.

(Inherited from View)
BackgroundTintMode

Return the blending mode used to apply the tint to the background drawable, if specified.

(Inherited from View)
Baseline

Return the offset of the widget's text baseline from the widget's top boundary.

(Inherited from View)
Bottom

Bottom position of this view relative to its parent. -or- Sets the bottom position of this view relative to its parent.

(Inherited from View)
BottomFadingEdgeStrength

Returns the strength, or intensity, of the bottom faded edge.

(Inherited from View)
BottomPaddingOffset

Amount by which to extend the bottom fading region.

(Inherited from View)
BreakStrategy

Gets the current strategy for breaking paragraphs into lines. -or- Sets the break strategy for breaking paragraphs into lines.

(Inherited from TextView)
CameraDistance

Gets the distance along the Z axis from the camera to this view.

(Inherited from View)
Class

Returns the runtime class of this Object.

(Inherited from Object)
Clickable

Indicates whether this view reacts to click events or not. -or- Enables or disables click events for this view.

(Inherited from View)
ClipBounds

Returns a copy of the current #setClipBounds(Rect) clipBounds. -or- Sets a rectangular area on this view to which the view will be clipped when it is drawn.

(Inherited from View)
ClipToOutline

Returns whether the Outline should be used to clip the contents of the View. -or- Sets whether the View's Outline should be used to clip the contents of the View.

(Inherited from View)
CompletionHint (Inherited from AutoCompleteTextView)
CompletionHintFormatted

Gets the optional hint text displayed at the bottom of the the matching list.

(Inherited from AutoCompleteTextView)
CompoundDrawablePadding

Returns the padding between the compound drawables and the text. -or- Sets the size of the padding between the compound drawables and the text.

(Inherited from TextView)
CompoundDrawableTintBlendMode

Returns the blending mode used to apply the tint to the compound drawables, if specified. -or- Specifies the blending mode used to apply the tint specified by #setCompoundDrawableTintList(ColorStateList) to the compound drawables.

(Inherited from TextView)
CompoundDrawableTintList

Applies a tint to the compound drawables.

(Inherited from TextView)
CompoundDrawableTintMode

Returns the blending mode used to apply the tint to the compound drawables, if specified. -or- Specifies the blending mode used to apply the tint specified by #setCompoundDrawableTintList(ColorStateList) to the compound drawables.

(Inherited from TextView)
CompoundPaddingBottom

Returns the bottom padding of the view, plus space for the bottom Drawable if any.

(Inherited from TextView)
CompoundPaddingEnd

Returns the end padding of the view, plus space for the end Drawable if any.

(Inherited from TextView)
CompoundPaddingLeft

Returns the left padding of the view, plus space for the left Drawable if any.

(Inherited from TextView)
CompoundPaddingRight

Returns the right padding of the view, plus space for the right Drawable if any.

(Inherited from TextView)
CompoundPaddingStart

Returns the start padding of the view, plus space for the start Drawable if any.

(Inherited from TextView)
CompoundPaddingTop

Returns the top padding of the view, plus space for the top Drawable if any.

(Inherited from TextView)
ContentCaptureSession

Gets the session used to notify content capture events. -or- Sets the (optional) ContentCaptureSession associated with this view.

(Inherited from View)
ContentDescription (Inherited from View)
ContentDescriptionFormatted

Returns the View's content description. -or- Sets the View's content description.

(Inherited from View)
Context

Returns the context the view is running in, through which it can access the current theme, resources, etc.

(Inherited from View)
ContextClickable

Indicates whether this view reacts to context clicks or not. -or- Enables or disables context clicking for this view.

(Inherited from View)
ContextMenuInfo

Views should implement this if they have extra information to associate with the context menu.

(Inherited from View)
CurrentHintTextColor

Return the current color selected to paint the hint text.

(Inherited from TextView)
CurrentTextColor

Return the current color selected for normal text.

(Inherited from TextView)
CustomInsertionActionModeCallback

Retrieves the value set in #setCustomInsertionActionModeCallback. -or- If provided, this ActionMode.

(Inherited from TextView)
CustomSelectionActionModeCallback

Retrieves the value set in #setCustomSelectionActionModeCallback. -or- If provided, this ActionMode.

(Inherited from TextView)
DefaultEditable

Subclasses override this to specify that they have a KeyListener by default even if not specifically called for in the XML options.

(Inherited from TextView)
DefaultFocusHighlightEnabled

Returns whether this View should use a default focus highlight when it gets focused but doesn't have android.R.attr#state_focused defined in its background. -or- Sets whether this View should use a default focus highlight when it gets focused but doesn't have android.R.attr#state_focused defined in its background.

(Inherited from View)
DefaultMovementMethod

Subclasses override this to specify a default movement method.

(Inherited from TextView)
Display

Gets the logical display to which the view's window has been attached.

(Inherited from View)
DrawingCache

Calling this method is equivalent to calling getDrawingCache(false).

(Inherited from View)
DrawingCacheBackgroundColor

This member is deprecated. -or- Setting a solid background color for the drawing cache's bitmaps will improve performance and memory usage.

(Inherited from View)
DrawingCacheEnabled

Indicates whether the drawing cache is enabled for this view. -or- Enables or disables the drawing cache.

(Inherited from View)
DrawingCacheQuality

Returns the quality of the drawing cache. -or- Set the drawing cache quality of this view.

(Inherited from View)
DrawingTime

Return the time at which the drawing of the view hierarchy started.

(Inherited from View)
DropDownAnchor

Returns the id for the view that the auto-complete drop down list is anchored to. -or- Sets the view to which the auto-complete drop down list should anchor.

(Inherited from AutoCompleteTextView)
DropDownBackground

Gets the background of the auto-complete drop-down list.

(Inherited from AutoCompleteTextView)
DropDownHeight

Returns the current height for the auto-complete drop down list. -or- Sets the current height for the auto-complete drop down list.

(Inherited from AutoCompleteTextView)
DropDownHorizontalOffset

Gets the horizontal offset used for the auto-complete drop-down list. -or- Sets the horizontal offset used for the auto-complete drop-down list.

(Inherited from AutoCompleteTextView)
DropDownVerticalOffset

Gets the vertical offset used for the auto-complete drop-down list. -or- Sets the vertical offset used for the auto-complete drop-down list.

(Inherited from AutoCompleteTextView)
DropDownWidth

Returns the current width for the auto-complete drop down list. -or- Sets the current width for the auto-complete drop down list.

(Inherited from AutoCompleteTextView)
DuplicateParentStateEnabled

Indicates whether this duplicates its drawable state from its parent. -or- Enables or disables the duplication of the parent's state into this view.

(Inherited from View)
EditableText

Return the text that TextView is displaying as an Editable object.

(Inherited from TextView)
Elevation

The base elevation of this view relative to its parent, in pixels. -or- Sets the base elevation of this view, in pixels.

(Inherited from View)
Ellipsize

Returns where, if anywhere, words that are longer than the view is wide should be ellipsized. -or- Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

(Inherited from TextView)
Enabled

Returns the enabled status for this view. -or- Set the enabled state of this view.

(Inherited from View)
Error (Inherited from TextView)
ErrorFormatted

Returns the error message that was set to be displayed with #setError, or null if no error was set or if it the error was cleared by the widget after user input. -or- Sets the right-hand compound drawable of the TextView to the "error" icon and sets an error message that will be displayed in a popup when the TextView has focus.

(Inherited from TextView)
ExplicitStyle

Returns the resource ID for the style specified using style="..." in the AttributeSet's backing XML element or Resources#ID_NULL otherwise if not specified or otherwise not applicable.

(Inherited from View)
ExtendedPaddingBottom

Returns the extended bottom padding of the view, including both the bottom Drawable if any and any extra space to keep more than maxLines of text from showing.

(Inherited from TextView)
ExtendedPaddingTop

Returns the extended top padding of the view, including both the top Drawable if any and any extra space to keep more than maxLines of text from showing.

(Inherited from TextView)
FallbackLineSpacing

Set whether to respect the ascent and descent of the fallback fonts that are used in displaying the text (which is needed to avoid text from consecutive lines running into each other).

(Inherited from TextView)
Filter

Returns the Filter obtained from Filterable#getFilter, or null if #setAdapter was not called with a Filterable.

(Inherited from AutoCompleteTextView)
FilterTouchesWhenObscured

Gets whether the framework should discard touches when the view's window is obscured by another visible window at the touched location. -or- Sets whether the framework should discard touches when the view's window is obscured by another visible window at the touched location.

(Inherited from View)
FirstBaselineToTopHeight

Returns the distance between the first text baseline and the top of this TextView. -or- Updates the top padding of the TextView so that firstBaselineToTopHeight is the distance between the top of the TextView and first line's baseline.

(Inherited from TextView)
FitsSystemWindows

Check for state of #setFitsSystemWindows(boolean).

(Inherited from View)
Focusable

Returns whether this View is currently able to take focus. -or- Set whether this view can receive the focus.

(Inherited from View)
FocusableInTouchMode

When a view is focusable, it may not want to take focus when in touch mode. -or- Set whether this view can receive focus while in touch mode.

(Inherited from View)
FocusedByDefault

Returns whether this View should receive focus when the focus is restored for the view hierarchy containing this view. -or- Sets whether this View should receive focus when the focus is restored for the view hierarchy containing this view.

(Inherited from View)
FocusedSearchResultHighlightColor

Gets focused search result highlight color.

(Inherited from TextView)
FocusedSearchResultIndex

Gets the focused search result index. -or- Sets the focused search result index.

(Inherited from TextView)
FontFeatureSettings

Returns the font feature settings. -or- Sets font feature settings.

(Inherited from TextView)
FontVariationSettings

Returns the font variation settings.

(Inherited from TextView)
ForceDarkAllowed

See #setForceDarkAllowed(boolean) -or- Sets whether or not to allow force dark to apply to this view.

(Inherited from View)
Foreground

Returns the drawable used as the foreground of this View. -or- Supply a Drawable that is to be rendered on top of all of the content in the view.

(Inherited from View)
ForegroundGravity

Describes how the foreground is positioned.

(Inherited from View)
ForegroundTintBlendMode

Return the blending mode used to apply the tint to the foreground drawable, if specified. -or- Specifies the blending mode used to apply the tint specified by #setForegroundTintList(ColorStateList)} to the background drawable.

(Inherited from View)
ForegroundTintList

Return the tint applied to the foreground drawable, if specified. -or- Applies a tint to the foreground drawable.

(Inherited from View)
ForegroundTintMode

Return the blending mode used to apply the tint to the foreground drawable, if specified.

(Inherited from View)
FreezesText

Return whether this text view is including its entire text contents in frozen icicles. -or- Control whether this text view saves its entire text contents when freezing to an icicle, in addition to dynamic state such as cursor position.

(Inherited from TextView)
Gravity

Returns the horizontal and vertical alignment of this TextView. -or- Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

(Inherited from TextView)
Handle

The handle to the underlying Android instance.

(Inherited from Object)
Handler (Inherited from View)
HandwritingBoundsOffsetBottom

Return the amount of offset applied to the bottom edge of this view's handwriting bounds, in the unit of pixel.

(Inherited from View)
HandwritingBoundsOffsetLeft

Return the amount of offset applied to the left edge of this view's handwriting bounds, in the unit of pixel.

(Inherited from View)
HandwritingBoundsOffsetRight

Return the amount of offset applied to the right edge of this view's handwriting bounds, in the unit of pixel.

(Inherited from View)
HandwritingBoundsOffsetTop

Return the amount of offset applied to the top edge of this view's handwriting bounds, in the unit of pixel.

(Inherited from View)
HandwritingDelegatorCallback

Returns the callback set by #setHandwritingDelegatorCallback which should be called when a stylus MotionEvent occurs within this view's bounds. -or- Sets a callback which should be called when a stylus MotionEvent occurs within this view's bounds.

(Inherited from View)
HapticFeedbackEnabled

Set whether this view should have haptic feedback for events such as long presses.

(Inherited from View)
HasExplicitFocusable

Returns true if this view is focusable or if it contains a reachable View for which #hasExplicitFocusable() returns true.

(Inherited from View)
HasFocus

Returns true if this view has focus itself, or is the ancestor of the view that has focus.

(Inherited from View)
HasFocusable

Returns true if this view is focusable or if it contains a reachable View for which #hasFocusable() returns true.

(Inherited from View)
HasNestedScrollingParent

Returns true if this view has a nested scrolling parent.

(Inherited from View)
HasOnClickListeners

Return whether this view has an attached OnClickListener.

(Inherited from View)
HasOnLongClickListeners

Return whether this view has an attached OnLongClickListener.

(Inherited from View)
HasOverlappingRendering

Returns whether this View has content which overlaps.

(Inherited from View)
HasPointerCapture

Checks pointer capture status.

(Inherited from View)
HasSelection

Return true iff there is a selection of nonzero length inside this text view.

(Inherited from TextView)
HasTransientState

Indicates whether the view is currently tracking transient state that the app should not need to concern itself with saving and restoring, but that the framework should take special note to preserve when possible. -or- Set whether this view is currently tracking transient state that the framework should attempt to preserve when possible.

(Inherited from View)
HasWindowFocus

Returns true if this view is in a window that currently has window focus.

(Inherited from View)
Height

Return the height of your view.

(Inherited from View)
HighlightColor (Inherited from TextView)
Highlights

Returns highlights -or- Set Highlights

(Inherited from TextView)
Hint (Inherited from TextView)
HintFormatted

Returns the hint that is displayed when the text of the TextView is empty. -or- Sets the text to be displayed when the text of the TextView is empty.

(Inherited from TextView)
HintTextColors (Inherited from TextView)
HorizontalFadingEdgeEnabled

Indicate whether the horizontal edges are faded when the view is scrolled horizontally. -or- Define whether the horizontal edges should be faded when this view is scrolled horizontally.

(Inherited from View)
HorizontalFadingEdgeLength

Returns the size of the horizontal faded edges used to indicate that more content in this view is visible.

(Inherited from View)
HorizontalScrollBarEnabled

Indicate whether the horizontal scrollbar should be drawn or not. -or- Define whether the horizontal scrollbar should be drawn or not.

(Inherited from View)
HorizontalScrollbarHeight

Returns the height of the horizontal scrollbar.

(Inherited from View)
HorizontalScrollbarThumbDrawable

Returns the currently configured Drawable for the thumb of the horizontal scroll bar if it exists, null otherwise. -or- Defines the horizontal thumb drawable

(Inherited from View)
HorizontalScrollbarTrackDrawable

Returns the currently configured Drawable for the track of the horizontal scroll bar if it exists, null otherwise. -or- Defines the horizontal track drawable

(Inherited from View)
Hovered

Returns true if the view is currently hovered. -or- Sets whether the view is currently hovered.

(Inherited from View)
HyphenationFrequency

Gets the current frequency of automatic hyphenation to be used when determining word breaks. -or- Sets the frequency of automatic hyphenation to use when determining word breaks.

(Inherited from TextView)
Id

Returns this view's identifier. -or- Sets the identifier for this view.

(Inherited from View)
ImeActionId

Get the IME action ID previous set with #setImeActionLabel.

(Inherited from TextView)
ImeActionLabel (Inherited from TextView)
ImeActionLabelFormatted

Get the IME action label previous set with #setImeActionLabel.

(Inherited from TextView)
ImeHintLocales

Change "hint" locales associated with the text view, which will be reported to an IME with EditorInfo#hintLocales when it has focus.

(Inherited from TextView)
ImeOptions

Get the type of the Input Method Editor (IME). -or- Change the editor type integer associated with the text view, which is reported to an Input Method Editor (IME) with EditorInfo#imeOptions when it has focus.

(Inherited from TextView)
ImportantForAccessibility

Gets the mode for determining whether this View is important for accessibility. -or- Sets how to determine whether this view is important for accessibility which is if it fires accessibility events and if it is reported to accessibility services that query the screen.

(Inherited from View)
ImportantForAutofill

Gets the mode for determining whether this view is important for autofill. -or- Sets the mode for determining whether this view is considered important for autofill.

(Inherited from View)
ImportantForContentCapture

Gets the mode for determining whether this view is important for content capture. -or- Sets the mode for determining whether this view is considered important for content capture.

(Inherited from View)
IncludeFontPadding

Gets whether the TextView includes extra top and bottom padding to make room for accents that go above the normal ascent and descent.

(Inherited from TextView)
InputMethodMode

Returns the input method mode used by the auto complete dropdown. -or- Use this method to specify when the IME should be displayed.

(Inherited from AutoCompleteTextView)
InputType

Get the type of the editable content. -or- Set the type of the content with a constant as defined for EditorInfo#inputType.

(Inherited from TextView)
IsAccessibilityDataSensitive

Whether this view should restrict accessibility service access only to services that have the android.accessibilityservice.AccessibilityServiceInfo#isAccessibilityTool property set to true.

(Inherited from View)
IsAccessibilityFocused

Returns whether this View is accessibility focused.

(Inherited from View)
IsAllCaps

Checks whether the transformation method applied to this TextView is set to ALL CAPS.

(Inherited from TextView)
IsAttachedToWindow

Returns true if this view is currently attached to a window.

(Inherited from View)
IsCredential

Gets the mode for determining whether this view is a credential. -or- Sets whether this view is a credential for Credential Manager purposes.

(Inherited from View)
IsCursorVisible (Inherited from TextView)
IsDirty

True if this view has changed since the last time being drawn.

(Inherited from View)
IsElegantTextHeight

Get the value of the TextView's elegant height metrics flag.

(Inherited from TextView)
IsFocused

Returns true if this view has focus

(Inherited from View)
IsHandwritingDelegate

Returns whether this view has been set as a handwriting delegate by #setIsHandwritingDelegate. -or- Sets this view to be a handwriting delegate.

(Inherited from View)
IsHardwareAccelerated

Indicates whether this view is attached to a hardware accelerated window or not.

(Inherited from View)
IsHorizontallyScrollable

Returns whether the text is allowed to be wider than the View.

(Inherited from TextView)
IsImportantForAccessibility

Computes whether this view should be exposed for accessibility.

(Inherited from View)
IsImportantForAutofill

Hints the Android System whether the android.app.assist.AssistStructure.ViewNode associated with this view is considered important for autofill purposes.

(Inherited from View)
IsImportantForContentCapture

Hints the Android System whether this view is considered important for content capture, based on the value explicitly set by #setImportantForContentCapture(int) and heuristics when it's #IMPORTANT_FOR_CONTENT_CAPTURE_AUTO.

(Inherited from View)
IsInEditMode

Indicates whether this View is currently in edit mode.

(Inherited from View)
IsInLayout

Returns whether the view hierarchy is currently undergoing a layout pass.

(Inherited from View)
IsInputMethodTarget

Returns whether this text view is a current input method target.

(Inherited from TextView)
IsInTouchMode

Returns the touch mode state associated with this view.

(Inherited from View)
IsLaidOut

Returns true if this view has been through at least one layout since it was last attached to or detached from a window.

(Inherited from View)
IsLayoutDirectionResolved (Inherited from View)
IsLayoutRequested

Indicates whether or not this view's layout will be requested during the next hierarchy layout pass.

(Inherited from View)
IsOpaque

Indicates whether this View is opaque.

(Inherited from View)
IsPaddingOffsetRequired

If the View draws content inside its padding and enables fading edges, it needs to support padding offsets.

(Inherited from View)
IsPaddingRelative

Return if the padding has been set through relative values #setPaddingRelative(int, int, int, int) or through

(Inherited from View)
IsPerformingCompletion

Identifies whether the view is currently performing a text completion, so subclasses can decide whether to respond to text changed events.

(Inherited from AutoCompleteTextView)
IsPivotSet

Returns whether or not a pivot has been set by a call to #setPivotX(float) or #setPivotY(float).

(Inherited from View)
IsPopupShowing

Indicates whether the popup menu is showing.

(Inherited from AutoCompleteTextView)
IsScrollContainer

Indicates whether this view is one of the set of scrollable containers in its window.

(Inherited from View)
IsShowingLayoutBounds

Returns true when the View is attached and the system developer setting to show the layout bounds is enabled or false otherwise.

(Inherited from View)
IsShown

Returns the visibility of this view and all of its ancestors

(Inherited from View)
IsSingleLine

Returns if the text is constrained to a single horizontally scrolling line ignoring new line characters instead of letting it wrap onto multiple lines.

(Inherited from TextView)
IsStyleShortcutEnabled

Return true if style shortcut is enabled, otherwise returns false.

(Inherited from EditText)
IsSuggestionsEnabled

Return whether or not suggestions are enabled on this TextView.

(Inherited from TextView)
IsTemporarilyDetached

Tells whether the View is in the state between #onStartTemporaryDetach() and #onFinishTemporaryDetach().

(Inherited from View)
IsTextAlignmentResolved (Inherited from View)
IsTextDirectionResolved (Inherited from View)
IsTextSelectable

Returns the state of the textIsSelectable flag (See #setTextIsSelectable setTextIsSelectable()).

(Inherited from TextView)
ItemClickListener
Obsolete.

Returns the listener that is notified whenever the user clicks an item in the drop down list.

(Inherited from AutoCompleteTextView)
ItemSelectedListener
Obsolete.

Returns the listener that is notified whenever the user selects an item in the drop down list.

(Inherited from AutoCompleteTextView)
JniIdentityHashCode (Inherited from Object)
JniPeerMembers
JustificationMode

Set justification mode.

(Inherited from TextView)
KeepScreenOn

Returns whether the screen should remain on, corresponding to the current value of #KEEP_SCREEN_ON. -or- Controls whether the screen should remain on, modifying the value of #KEEP_SCREEN_ON.

(Inherited from View)
KeyboardNavigationCluster

Returns whether this View is a root of a keyboard navigation cluster. -or- Set whether this view is a root of a keyboard navigation cluster.

(Inherited from View)
KeyDispatcherState

Return the global KeyEvent.DispatcherState KeyEvent.DispatcherState for this view's window.

(Inherited from View)
KeyListener

Gets the current KeyListener for the TextView. -or- Sets the key listener to be used with this TextView.

(Inherited from TextView)
LabelFor

Gets the id of a view for which this view serves as a label for accessibility purposes. -or- Sets the id of a view for which this view serves as a label for accessibility purposes.

(Inherited from View)
LastBaselineToBottomHeight

Returns the distance between the last text baseline and the bottom of this TextView. -or- Updates the bottom padding of the TextView so that lastBaselineToBottomHeight is the distance between the bottom of the TextView and the last line's baseline.

(Inherited from TextView)
LayerType

Indicates what type of layer is currently associated with this view.

(Inherited from View)
Layout

Gets the android.text.Layout that is currently being used to display the text.

(Inherited from TextView)
LayoutDirection

Returns the resolved layout direction for this view. -or- Set the layout direction for this view.

(Inherited from View)
LayoutParameters

Get the LayoutParams associated with this view. -or- Set the layout parameters associated with this view.

(Inherited from View)
Left

Left position of this view relative to its parent. -or- Sets the left position of this view relative to its parent.

(Inherited from View)
LeftFadingEdgeStrength

Returns the strength, or intensity, of the left faded edge.

(Inherited from View)
LeftPaddingOffset

Amount by which to extend the left fading region.

(Inherited from View)
LetterSpacing

Gets the text letter-space value, which determines the spacing between characters. -or- Sets text letter-spacing in em units.

(Inherited from TextView)
LineBreakStyle

Gets the current line-break style for text wrapping. -or- Sets the line-break style for text wrapping.

(Inherited from TextView)
LineBreakWordStyle

Gets the current line-break word style for text wrapping. -or- Sets the line-break word style for text wrapping.

(Inherited from TextView)
LineCount

Return the number of lines of text, or 0 if the internal Layout has not been built.

(Inherited from TextView)
LineHeight

Gets the vertical distance between lines of text, in pixels. -or- Sets an explicit line height for this TextView.

(Inherited from TextView)
LineSpacingExtra

Gets the line spacing extra space

(Inherited from TextView)
LineSpacingMultiplier

Gets the line spacing multiplier

(Inherited from TextView)
LinksClickable

Returns whether the movement method will automatically be set to LinkMovementMethod if #setAutoLinkMask has been set to nonzero and links are detected in #setText. -or- Sets whether the movement method will automatically be set to LinkMovementMethod if #setAutoLinkMask has been set to nonzero and links are detected in #setText.

(Inherited from TextView)
LinkTextColors (Inherited from TextView)
ListSelection

Get the position of the dropdown view selection, if there is one. -or- Set the position of the dropdown view selection.

(Inherited from AutoCompleteTextView)
LongClickable

Indicates whether this view reacts to long click events or not. -or- Enables or disables long click events for this view.

(Inherited from View)
MarqueeRepeatLimit

Gets the number of times the marquee animation is repeated.

(Inherited from TextView)
Matrix

The transform matrix of this view, which is calculated based on the current rotation, scale, and pivot properties.

(Inherited from View)
MaxEms

Returns the maximum width of TextView in terms of ems or -1 if the maximum width was set using #setMaxWidth(int) or #setWidth(int).

(Inherited from TextView)
MaxHeight

Returns the maximum height of TextView in terms of pixels or -1 if the maximum height was set using #setMaxLines(int) or #setLines(int).

(Inherited from TextView)
MaxLines

Returns the maximum height of TextView in terms of number of lines or -1 if the maximum height was set using #setMaxHeight(int) or #setHeight(int).

(Inherited from TextView)
MaxWidth

Returns the maximum width of TextView in terms of pixels or -1 if the maximum width was set using #setMaxEms(int) or #setEms(int).

(Inherited from TextView)
MeasuredHeight

Like #getMeasuredHeightAndState(), but only returns the raw height component (that is the result is masked by #MEASURED_SIZE_MASK).

(Inherited from View)
MeasuredHeightAndState

Return the full height measurement information for this view as computed by the most recent call to #measure(int, int).

(Inherited from View)
MeasuredState

Return only the state bits of #getMeasuredWidthAndState() and #getMeasuredHeightAndState(), combined into one integer.

(Inherited from View)
MeasuredWidth

Like #getMeasuredWidthAndState(), but only returns the raw width component (that is the result is masked by #MEASURED_SIZE_MASK).

(Inherited from View)
MeasuredWidthAndState

Return the full width measurement information for this view as computed by the most recent call to #measure(int, int).

(Inherited from View)
MinEms

Returns the minimum width of TextView in terms of ems or -1 if the minimum width was set using #setMinWidth(int) or #setWidth(int).

(Inherited from TextView)
MinHeight

Returns the minimum height of TextView in terms of pixels or -1 if the minimum height was set using #setMinLines(int) or #setLines(int).

(Inherited from TextView)
MinimumHeight

Returns the minimum height of the view.

(Inherited from View)
MinimumWidth

Returns the minimum width of the view.

(Inherited from View)
MinLines

Returns the minimum height of TextView in terms of number of lines or -1 if the minimum height was set using #setMinHeight(int) or #setHeight(int).

(Inherited from TextView)
MinWidth

Returns the minimum width of TextView in terms of pixels or -1 if the minimum width was set using #setMinEms(int) or #setEms(int).

(Inherited from TextView)
MovementMethod

Gets the android.text.method.MovementMethod being used for this TextView, which provides positioning, scrolling, and text selection functionality. -or- Sets the android.text.method.MovementMethod for handling arrow key movement for this TextView.

(Inherited from TextView)
NestedScrollingEnabled

Returns true if nested scrolling is enabled for this view. -or- Enable or disable nested scrolling for this view.

(Inherited from View)
NextClusterForwardId

Gets the id of the root of the next keyboard navigation cluster. -or- Sets the id of the view to use as the root of the next keyboard navigation cluster.

(Inherited from View)
NextFocusDownId

Gets the id of the view to use when the next focus is #FOCUS_DOWN. -or- Sets the id of the view to use when the next focus is #FOCUS_DOWN.

(Inherited from View)
NextFocusForwardId

Gets the id of the view to use when the next focus is #FOCUS_FORWARD. -or- Sets the id of the view to use when the next focus is #FOCUS_FORWARD.

(Inherited from View)
NextFocusLeftId

Gets the id of the view to use when the next focus is #FOCUS_LEFT. -or- Sets the id of the view to use when the next focus is #FOCUS_LEFT.

(Inherited from View)
NextFocusRightId

Gets the id of the view to use when the next focus is #FOCUS_RIGHT. -or- Sets the id of the view to use when the next focus is #FOCUS_RIGHT.

(Inherited from View)
NextFocusUpId

Gets the id of the view to use when the next focus is #FOCUS_UP. -or- Sets the id of the view to use when the next focus is #FOCUS_UP.

(Inherited from View)
OnFocusChangeListener

Returns the focus-change callback registered for this view. -or- Register a callback to be invoked when focus of this view changed.

(Inherited from View)
OnItemClickListener

Returns the listener that is notified whenever the user clicks an item in the drop down list. -or- Sets the listener that will be notified when the user clicks an item in the drop down list.

(Inherited from AutoCompleteTextView)
OnItemSelectedListener

Returns the listener that is notified whenever the user selects an item in the drop down list. -or- Sets the listener that will be notified when the user selects an item in the drop down list.

(Inherited from AutoCompleteTextView)
OutlineAmbientShadowColor (Inherited from View)
OutlineProvider

Returns the current ViewOutlineProvider of the view, which generates the Outline that defines the shape of the shadow it casts, and enables outline clipping. -or- Sets the ViewOutlineProvider of the view, which generates the Outline that defines the shape of the shadow it casts, and enables outline clipping.

(Inherited from View)
OutlineSpotShadowColor (Inherited from View)
Overlay

Returns the overlay for this view, creating it if it does not yet exist.

(Inherited from View)
OverScrollMode

Returns the over-scroll mode for this view. -or- Set the over-scroll mode for this view.

(Inherited from View)
PaddingBottom

Returns the bottom padding of this view.

(Inherited from View)
PaddingEnd

Returns the end padding of this view depending on its resolved layout direction.

(Inherited from View)
PaddingLeft

Returns the left padding of this view.

(Inherited from View)
PaddingRight

Returns the right padding of this view.

(Inherited from View)
PaddingStart

Returns the start padding of this view depending on its resolved layout direction.

(Inherited from View)
PaddingTop

Returns the top padding of this view.

(Inherited from View)
Paint

Gets the TextPaint used for the text.

(Inherited from TextView)
PaintFlags

Gets the flags on the Paint being used to display the text. -or- Sets flags on the Paint being used to display the text and reflows the text if they are different from the old flags.

(Inherited from TextView)
Parent

Gets the parent of this view.

(Inherited from View)
ParentForAccessibility

Gets the parent for accessibility purposes.

(Inherited from View)
PeerReference (Inherited from Object)
PivotX

The x location of the point around which the view is #setRotation(float) rotated and #setScaleX(float) scaled. -or- Sets the x location of the point around which the view is #setRotation(float) rotated and #setScaleX(float) scaled.

(Inherited from View)
PivotY

The y location of the point around which the view is #setRotation(float) rotated and #setScaleY(float) scaled. -or- Sets the y location of the point around which the view is #setRotation(float) rotated and #setScaleY(float) scaled.

(Inherited from View)
PointerIcon

Gets the mouse pointer icon for the current view. -or- Set the pointer icon to be used for a mouse pointer in the current view.

(Inherited from View)
PreferKeepClear

Retrieve the preference for this view to be kept clear. -or- Set a preference to keep the bounds of this view clear from floating windows above this view's window.

(Inherited from View)
PreferKeepClearRects

Set a preference to keep the provided rects clear from floating windows above this view's window.

(Inherited from View)
Pressed

Indicates whether the view is currently in pressed state. -or- Sets the pressed state for this view.

(Inherited from View)
PrivateImeOptions

Get the private type of the content. -or- Set the private content type of the text, which is the EditorInfo#privateImeOptions EditorInfo.privateImeOptions field that will be filled in when creating an input connection.

(Inherited from TextView)
Resources

Returns the resources associated with this view.

(Inherited from View)
RevealOnFocusHint

Returns this view's preference for reveal behavior when it gains focus. -or- Sets this view's preference for reveal behavior when it gains focus.

(Inherited from View)
Right

Right position of this view relative to its parent. -or- Sets the right position of this view relative to its parent.

(Inherited from View)
RightFadingEdgeStrength

Returns the strength, or intensity, of the right faded edge.

(Inherited from View)
RightPaddingOffset

Amount by which to extend the right fading region.

(Inherited from View)
RootSurfaceControl

The AttachedSurfaceControl itself is not a View, it is just the interface to the windowing-system object that contains the entire view hierarchy.

(Inherited from View)
RootView

Finds the topmost view in the current view hierarchy.

(Inherited from View)
RootWindowInsets

Provide original WindowInsets that are dispatched to the view hierarchy.

(Inherited from View)
Rotation

The degrees that the view is rotated around the pivot point. -or- Sets the degrees that the view is rotated around the pivot point.

(Inherited from View)
RotationX

The degrees that the view is rotated around the horizontal axis through the pivot point. -or- Sets the degrees that the view is rotated around the horizontal axis through the pivot point.

(Inherited from View)
RotationY

The degrees that the view is rotated around the vertical axis through the pivot point. -or- Sets the degrees that the view is rotated around the vertical axis through the pivot point.

(Inherited from View)
SaveEnabled

Indicates whether this view will save its state (that is, whether its #onSaveInstanceState method will be called). -or- Controls whether the saving of this view's state is enabled (that is, whether its #onSaveInstanceState method will be called).

(Inherited from View)
SaveFromParentEnabled

Indicates whether the entire hierarchy under this view will save its state when a state saving traversal occurs from its parent. -or- Controls whether the entire hierarchy under this view will save its state when a state saving traversal occurs from its parent.

(Inherited from View)
ScaleX

The amount that the view is scaled in x around the pivot point, as a proportion of the view's unscaled width. -or- Sets the amount that the view is scaled in x around the pivot point, as a proportion of the view's unscaled width.

(Inherited from View)
ScaleY

The amount that the view is scaled in y around the pivot point, as a proportion of the view's unscaled height. -or- Sets the amount that the view is scaled in Y around the pivot point, as a proportion of the view's unscaled width.

(Inherited from View)
ScreenReaderFocusable

Returns whether the view should be treated as a focusable unit by screen reader accessibility tools. -or- Sets whether this View should be a focusable element for screen readers and include non-focusable Views from its subtree when providing feedback.

(Inherited from View)
ScrollBarDefaultDelayBeforeFade

Returns the delay before scrollbars fade. -or- Define the delay before scrollbars fade.

(Inherited from View)
ScrollBarFadeDuration

Returns the scrollbar fade duration. -or- Define the scrollbar fade duration.

(Inherited from View)
ScrollbarFadingEnabled

Returns true if scrollbars will fade when this view is not scrolling -or- Define whether scrollbars will fade when the view is not scrolling.

(Inherited from View)
ScrollBarSize

Returns the scrollbar size. -or- Define the scrollbar size.

(Inherited from View)
ScrollBarStyle

Returns the current scrollbar style. -or- Specify the style of the scrollbars.

(Inherited from View)
ScrollCaptureHint

Returns the current scroll capture hint for this view. -or- Sets the scroll capture hint for this View.

(Inherited from View)
ScrollIndicators

Returns a bitmask representing the enabled scroll indicators.

(Inherited from View)
ScrollX

Return the scrolled left position of this view. -or- Set the horizontal scrolled position of your view.

(Inherited from View)
ScrollY

Return the scrolled top position of this view. -or- Set the vertical scrolled position of your view.

(Inherited from View)
SearchResultHighlightColor

Gets the search result highlight color.

(Inherited from TextView)
Selected

Indicates the selection state of this view. -or- Changes the selection state of this view.

(Inherited from View)
SelectionEnd

Convenience for Selection#getSelectionEnd.

(Inherited from TextView)
SelectionStart

Convenience for Selection#getSelectionStart.

(Inherited from TextView)
ShadowColor

Gets the color of the shadow layer.

(Inherited from TextView)
ShadowDx (Inherited from TextView)
ShadowDy

Gets the vertical offset of the shadow layer.

(Inherited from TextView)
ShadowRadius

Gets the radius of the shadow layer.

(Inherited from TextView)
ShowSoftInputOnFocus

Returns whether the soft input method will be made visible when this TextView gets focused. -or- Sets whether the soft input method will be made visible when this TextView gets focused.

(Inherited from TextView)
SolidColor

Override this if your view is known to always be drawn on top of a solid color background, and needs to draw fading edges.

(Inherited from View)
SoundEffectsEnabled

Set whether this view should have sound effects enabled for events such as clicking and touching.

(Inherited from View)
SourceLayoutResId

A View can be inflated from an XML layout.

(Inherited from View)
StateDescription (Inherited from View)
StateDescriptionFormatted

Returns the View's state description. -or- Sets the View's state description.

(Inherited from View)
StateListAnimator

Returns the current StateListAnimator if exists. -or- Attaches the provided StateListAnimator to this View.

(Inherited from View)
SuggestedMinimumHeight

Returns the suggested minimum height that the view should use.

(Inherited from View)
SuggestedMinimumWidth

Returns the suggested minimum width that the view should use.

(Inherited from View)
SystemGestureExclusionRects

Retrieve the list of areas within this view's post-layout coordinate space where the system should not intercept touch or other pointing device gestures. -or- Sets a list of areas within this view's post-layout coordinate space where the system should not intercept touch or other pointing device gestures.

(Inherited from View)
SystemUiFlags (Inherited from View)
SystemUiVisibility
Obsolete.

Returns the last #setSystemUiVisibility(int) that this view has requested. -or- Request that the visibility of the status bar or other screen/window decorations be changed.

(Inherited from View)
Tag

Returns this view's tag. -or- Sets the tag associated with this view.

(Inherited from View)
Text (Inherited from TextView)
TextAlignment

Return the resolved text alignment. -or- Set the text alignment.

(Inherited from View)
TextClassifier

Returns the TextClassifier used by this TextView. -or- Sets the TextClassifier for this TextView.

(Inherited from TextView)
TextColors

Gets the text colors for the different states (normal, selected, focused) of the TextView.

(Inherited from TextView)
TextCursorDrawable

Returns the Drawable corresponding to the text cursor. -or- Sets the Drawable corresponding to the text cursor.

(Inherited from TextView)
TextDirection

Return the resolved text direction. -or- Set the text direction.

(Inherited from View)
TextDirectionHeuristic

Returns resolved TextDirectionHeuristic that will be used for text layout.

(Inherited from TextView)
TextFormatted

Return the text that TextView is displaying. -or- Sets the text to be displayed.

(Inherited from TextView)
TextLocale

Get the default primary Locale of the text in this TextView. -or- Set the default Locale of the text in this TextView to a one-member LocaleList containing just the given Locale.

(Inherited from TextView)
TextLocales

Get the default LocaleList of the text in this TextView. -or- Set the default LocaleList of the text in this TextView to the given value.

(Inherited from TextView)
TextScaleX

Gets the extent by which text should be stretched horizontally. -or- Sets the horizontal scale factor for text.

(Inherited from TextView)
TextSelectHandle

Returns the Drawable corresponding to the selection handle used for positioning the cursor within text. -or- Sets the Drawable corresponding to the selection handle used for positioning the cursor within text.

(Inherited from TextView)
TextSelectHandleLeft

Returns the Drawable corresponding to the left handle used for selecting text. -or- Sets the Drawable corresponding to the left handle used for selecting text.

(Inherited from TextView)
TextSelectHandleRight

Returns the Drawable corresponding to the right handle used for selecting text. -or- Sets the Drawable corresponding to the right handle used for selecting text.

(Inherited from TextView)
TextSize

Set the default text size to the given value, interpreted as "scaled pixel" units.

(Inherited from TextView)
TextSizeUnit

Gets the text size unit defined by the developer.

(Inherited from TextView)
Threshold

Returns the number of characters the user must type before the drop down list is shown. -or- Specifies the minimum number of characters the user has to type in the edit box before the drop down list is shown.

(Inherited from AutoCompleteTextView)
ThresholdClass

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

ThresholdType

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

TooltipText (Inherited from View)
TooltipTextFormatted

Returns the view's tooltip text. -or- Sets the tooltip text which will be displayed in a small popup next to the view.

(Inherited from View)
Top

Top position of this view relative to its parent. -or- Sets the top position of this view relative to its parent.

(Inherited from View)
TopFadingEdgeStrength

Returns the strength, or intensity, of the top faded edge.

(Inherited from View)
TopPaddingOffset

Amount by which to extend the top fading region.

(Inherited from View)
TotalPaddingBottom

Returns the total bottom padding of the view, including the bottom Drawable if any, the extra space to keep more than maxLines from showing, and the vertical offset for gravity, if any.

(Inherited from TextView)
TotalPaddingEnd

Returns the total end padding of the view, including the end Drawable if any.

(Inherited from TextView)
TotalPaddingLeft

Returns the total left padding of the view, including the left Drawable if any.

(Inherited from TextView)
TotalPaddingRight

Returns the total right padding of the view, including the right Drawable if any.

(Inherited from TextView)
TotalPaddingStart

Returns the total start padding of the view, including the start Drawable if any.

(Inherited from TextView)
TotalPaddingTop

Returns the total top padding of the view, including the top Drawable if any, the extra space to keep more than maxLines from showing, and the vertical offset for gravity, if any.

(Inherited from TextView)
Touchables

Find and return all touchable views that are descendants of this view, possibly including this view if it is touchable itself.

(Inherited from View)
TouchDelegate

Gets the TouchDelegate for this View. -or- Sets the TouchDelegate for this View.

(Inherited from View)
TransformationMethod

Gets the current android.text.method.TransformationMethod for the TextView. -or- Sets the transformation that is applied to the text that this TextView is displaying.

(Inherited from TextView)
TransitionAlpha

This property is intended only for use by the Fade transition, which animates it to produce a visual translucency that does not side-effect (or get affected by) the real alpha property. -or- This property is intended only for use by the Fade transition, which animates it to produce a visual translucency that does not side-effect (or get affected by) the real alpha property.

(Inherited from View)
TransitionName

Returns the name of the View to be used to identify Views in Transitions. -or- Sets the name of the View to be used to identify Views in Transitions.

(Inherited from View)
TranslationX

The horizontal location of this view relative to its #getLeft() left position. -or- Sets the horizontal location of this view relative to its #getLeft() left position.

(Inherited from View)
TranslationY

The vertical location of this view relative to its #getTop() top position. -or- Sets the vertical location of this view relative to its #getTop() top position.

(Inherited from View)
TranslationZ

The depth location of this view relative to its #getElevation() elevation. -or- Sets the depth location of this view relative to its #getElevation() elevation.

(Inherited from View)
Typeface

Gets the current Typeface that is used to style the text. -or- Sets the typeface and style in which the text should be displayed.

(Inherited from TextView)
UniqueDrawingId

Get the identifier used for this view by the drawing system.

(Inherited from View)
Validator

Returns the Validator set with #setValidator, or <code>null</code> if it was not set. -or- Sets the validator used to perform text validation.

(Inherited from AutoCompleteTextView)
VerticalFadingEdgeEnabled

Indicate whether the vertical edges are faded when the view is scrolled horizontally. -or- Define whether the vertical edges should be faded when this view is scrolled vertically.

(Inherited from View)
VerticalFadingEdgeLength

Returns the size of the vertical faded edges used to indicate that more content in this view is visible.

(Inherited from View)
VerticalScrollBarEnabled

Indicate whether the vertical scrollbar should be drawn or not. -or- Define whether the vertical scrollbar should be drawn or not.

(Inherited from View)
VerticalScrollbarPosition

Set the position of the vertical scroll bar.

(Inherited from View)
VerticalScrollbarThumbDrawable

Returns the currently configured Drawable for the thumb of the vertical scroll bar if it exists, null otherwise. -or- Defines the vertical scrollbar thumb drawable

(Inherited from View)
VerticalScrollbarTrackDrawable

Returns the currently configured Drawable for the track of the vertical scroll bar if it exists, null otherwise. -or- Defines the vertical scrollbar track drawable

(Inherited from View)
VerticalScrollbarWidth

Returns the width of the vertical scrollbar.

(Inherited from View)
ViewTranslationResponse

Returns the ViewTranslationResponse associated with this view.

(Inherited from View)
ViewTreeObserver

Returns the ViewTreeObserver for this view's hierarchy.

(Inherited from View)
Visibility

Returns the visibility status for this view. -or- Set the visibility state of this view.

(Inherited from View)
Width

Return the width of your view.

(Inherited from View)
WindowAttachCount (Inherited from View)
WindowId

Retrieve the WindowId for the window this view is currently attached to.

(Inherited from View)
WindowInsetsController

Retrieves the single WindowInsetsController of the window this view is attached to.

(Inherited from View)
WindowSystemUiVisibility

Returns the current system UI visibility that is currently set for the entire window.

(Inherited from View)
WindowToken

Retrieve a unique token identifying the window this view is attached to.

(Inherited from View)
WindowVisibility

Returns the current visibility of the window this view is attached to (either #GONE, #INVISIBLE, or #VISIBLE).

(Inherited from View)

Methods

AddChildrenForAccessibility(IList<View>)

Adds the children of this View relevant for accessibility to the given list as output.

(Inherited from View)
AddExtraDataToAccessibilityNodeInfo(AccessibilityNodeInfo, String, Bundle)

Adds extra data to an AccessibilityNodeInfo based on an explicit request for the additional data.

(Inherited from View)
AddFocusables(IList<View>, FocusSearchDirection)

Add any focusable views that are descendants of this view (possibly including this view if it is focusable itself) to views.

(Inherited from View)
AddFocusables(IList<View>, FocusSearchDirection, FocusablesFlags)

Adds any focusable views that are descendants of this view (possibly including this view if it is focusable itself) to views.

(Inherited from View)
AddKeyboardNavigationClusters(ICollection<View>, FocusSearchDirection)

Adds any keyboard navigation cluster roots that are descendants of this view (possibly including this view if it is a cluster root itself) to views.

(Inherited from View)
AddOnAttachStateChangeListener(View+IOnAttachStateChangeListener)

Add a listener for attach state changes.

(Inherited from View)
AddOnLayoutChangeListener(View+IOnLayoutChangeListener)

Add a listener that will be called when the bounds of the view change due to layout processing.

(Inherited from View)
AddOnUnhandledKeyEventListener(View+IOnUnhandledKeyEventListener)

Adds a listener which will receive unhandled KeyEvents.

(Inherited from View)
AddTextChangedListener(ITextWatcher)

Adds a TextWatcher to the list of those whose methods are called whenever this TextView's text changes.

(Inherited from TextView)
AddTouchables(IList<View>)

Add any touchable views that are descendants of this view (possibly including this view if it is touchable itself) to views.

(Inherited from View)
Animate()

This method returns a ViewPropertyAnimator object, which can be used to animate specific properties on this View.

(Inherited from View)
AnnounceForAccessibility(ICharSequence)

Convenience method for sending a AccessibilityEvent#TYPE_ANNOUNCEMENTAccessibilityEvent to suggest that an accessibility service announce the specified text to its users.

(Inherited from View)
AnnounceForAccessibility(String)

Convenience method for sending a AccessibilityEvent#TYPE_ANNOUNCEMENTAccessibilityEvent to suggest that an accessibility service announce the specified text to its users.

(Inherited from View)
Append(ICharSequence)

Convenience method to append the specified text to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

(Inherited from TextView)
Append(ICharSequence, Int32, Int32)

Convenience method to append the specified text slice to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

(Inherited from TextView)
Append(String)

Convenience method to append the specified text to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

(Inherited from TextView)
Append(String, Int32, Int32)

Convenience method to append the specified text slice to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

(Inherited from TextView)
Autofill(AutofillValue)

Automatically fills the content of this view with the value.

(Inherited from View)
Autofill(SparseArray)

Automatically fills the content of the virtual children within this view.

(Inherited from View)
AwakenScrollBars()

Trigger the scrollbars to draw.

(Inherited from View)
AwakenScrollBars(Int32)

Trigger the scrollbars to draw.

(Inherited from View)
AwakenScrollBars(Int32, Boolean)

Trigger the scrollbars to draw.

(Inherited from View)
BeginBatchEdit() (Inherited from TextView)
BringPointIntoView(Int32)

Move the point, specified by the offset, into the view if it is needed.

(Inherited from TextView)
BringPointIntoView(Int32, Boolean)

Move the insertion position of the given offset into visible area of the View.

(Inherited from TextView)
BringToFront()

Change the view's z order in the tree, so it's on top of other sibling views.

(Inherited from View)
BuildDrawingCache()

Calling this method is equivalent to calling buildDrawingCache(false).

(Inherited from View)
BuildDrawingCache(Boolean)

Forces the drawing cache to be built if the drawing cache is invalid.

(Inherited from View)
BuildLayer()

Forces this view's layer to be created and this view to be rendered into its layer.

(Inherited from View)
CallOnClick()

Directly call any attached OnClickListener.

(Inherited from View)
CancelDragAndDrop()

Cancels an ongoing drag and drop operation.

(Inherited from View)
CancelLongPress()

Cancels a pending long press.

(Inherited from View)
CancelPendingInputEvents()

Cancel any deferred high-level input events that were previously posted to the event queue.

(Inherited from View)
CanResolveLayoutDirection()

Check if layout direction resolution can be done.

(Inherited from View)
CanResolveTextAlignment()

Check if text alignment resolution can be done.

(Inherited from View)
CanResolveTextDirection()

Check if text direction resolution can be done.

(Inherited from View)
CanScrollHorizontally(Int32)

Check if this view can be scrolled horizontally in a certain direction.

(Inherited from View)
CanScrollVertically(Int32)

Check if this view can be scrolled vertically in a certain direction.

(Inherited from View)
CheckInputConnectionProxy(View)

Called by the android.view.inputmethod.InputMethodManager when a view who is not the current input connection target is trying to make a call on the manager.

(Inherited from View)
ClearAnimation()

Cancels any animations for this view.

(Inherited from View)
ClearComposingText()

Use BaseInputConnection#removeComposingSpans BaseInputConnection.removeComposingSpans() to remove any IME composing state from this text view.

(Inherited from TextView)
ClearFocus()

Called when this view wants to give up focus.

(Inherited from View)
ClearListSelection()

Clear the list selection.

(Inherited from AutoCompleteTextView)
ClearViewTranslationCallback()

Clear the ViewTranslationCallback from this view.

(Inherited from View)
Clone()

Creates and returns a copy of this object.

(Inherited from Object)
ComputeHorizontalScrollExtent()

Compute the horizontal extent of the horizontal scrollbar's thumb within the horizontal range.

(Inherited from View)
ComputeHorizontalScrollOffset()

Compute the horizontal offset of the horizontal scrollbar's thumb within the horizontal range.

(Inherited from View)
ComputeHorizontalScrollRange()

Compute the horizontal range that the horizontal scrollbar represents.

(Inherited from View)
ComputeScroll()

Called by a parent to request that a child update its values for mScrollX and mScrollY if necessary.

(Inherited from View)
ComputeSystemWindowInsets(WindowInsets, Rect)

Compute insets that should be consumed by this view and the ones that should propagate to those under it.

(Inherited from View)
ComputeVerticalScrollExtent()

Compute the vertical extent of the vertical scrollbar's thumb within the vertical range.

(Inherited from View)
ComputeVerticalScrollOffset()

Compute the vertical offset of the vertical scrollbar's thumb within the horizontal range.

(Inherited from View)
ComputeVerticalScrollRange()

Compute the vertical range that the vertical scrollbar represents.

(Inherited from View)
ConvertSelectionToString(Object)

Converts the selected item from the drop down list into a sequence of character that can be used in the edit box.

(Inherited from AutoCompleteTextView)
ConvertSelectionToStringFormatted(Object)

Converts the selected item from the drop down list into a sequence of character that can be used in the edit box.

(Inherited from AutoCompleteTextView)
CreateAccessibilityNodeInfo()

Returns an AccessibilityNodeInfo representing this view from the point of view of an android.accessibilityservice.AccessibilityService.

(Inherited from View)
CreateContextMenu(IContextMenu)

Show the context menu for this view.

(Inherited from View)
Debug(Int32)

Prints information about this view in the log output, with the tag ViewLogTag.

(Inherited from TextView)
DestroyDrawingCache()

Frees the resources used by the drawing cache.

(Inherited from View)
DidTouchFocusSelect()

Returns true, only while processing a touch gesture, if the initial touch down event caused focus to move to the text view and as a result its selection changed.

(Inherited from TextView)
DismissDropDown()

Closes the drop down if present on screen.

(Inherited from AutoCompleteTextView)
DispatchApplyWindowInsets(WindowInsets)

Request to apply the given window insets to this view or another view in its subtree.

(Inherited from View)
DispatchCapturedPointerEvent(MotionEvent)

Pass a captured pointer event down to the focused view.

(Inherited from View)
DispatchConfigurationChanged(Configuration)

Dispatch a notification about a resource configuration change down the view hierarchy.

(Inherited from View)
DispatchCreateViewTranslationRequest(IDictionary<AutofillId,Int64[]>, Int32[], TranslationCapability, IList<ViewTranslationRequest>)

Dispatch to collect the ViewTranslationRequests for translation purpose by traversing the hierarchy when the app requests ui translation.

(Inherited from View)
DispatchDisplayHint(ViewStates)

Dispatch a hint about whether this view is displayed.

(Inherited from View)
DispatchDragEvent(DragEvent)

Detects if this View is enabled and has a drag event listener.

(Inherited from View)
DispatchDraw(Canvas)

Called by draw to draw the child views.

(Inherited from View)
DispatchDrawableHotspotChanged(Single, Single)

Dispatches drawableHotspotChanged to all of this View's children.

(Inherited from View)
DispatchFinishTemporaryDetach()

Dispatch #onFinishTemporaryDetach() to this View and its direct children if this is a container View.

(Inherited from View)
DispatchGenericFocusedEvent(MotionEvent)

Dispatch a generic motion event to the currently focused view.

(Inherited from View)
DispatchGenericMotionEvent(MotionEvent)

Dispatch a generic motion event.

(Inherited from View)
DispatchGenericPointerEvent(MotionEvent)

Dispatch a generic motion event to the view under the first pointer.

(Inherited from View)
DispatchHoverEvent(MotionEvent)

Dispatch a hover event.

(Inherited from View)
DispatchKeyEvent(KeyEvent)

Dispatch a key event to the next view on the focus path.

(Inherited from View)
DispatchKeyEventPreIme(KeyEvent)

Dispatch a key event before it is processed by any input method associated with the view hierarchy.

(Inherited from View)
DispatchKeyShortcutEvent(KeyEvent)

Dispatches a key shortcut event.

(Inherited from View)
DispatchNestedFling(Single, Single, Boolean)

Dispatch a fling to a nested scrolling parent.

(Inherited from View)
DispatchNestedPreFling(Single, Single)

Dispatch a fling to a nested scrolling parent before it is processed by this view.

(Inherited from View)
DispatchNestedPrePerformAccessibilityAction(Action, Bundle)

Report an accessibility action to this view's parents for delegated processing.

(Inherited from View)
DispatchNestedPreScroll(Int32, Int32, Int32[], Int32[])

Dispatch one step of a nested scroll in progress before this view consumes any portion of it.

(Inherited from View)
DispatchNestedScroll(Int32, Int32, Int32, Int32, Int32[])

Dispatch one step of a nested scroll in progress.

(Inherited from View)
DispatchPointerCaptureChanged(Boolean) (Inherited from View)
DispatchPopulateAccessibilityEvent(AccessibilityEvent)

Dispatches an AccessibilityEvent to the View first and then to its children for adding their text content to the event.

(Inherited from View)
DispatchProvideAutofillStructure(ViewStructure, AutofillFlags)

Dispatches creation of a ViewStructures for autofill purposes down the hierarchy, when an Assist structure is being created as part of an autofill request.

(Inherited from View)
DispatchProvideStructure(ViewStructure)

Dispatch creation of ViewStructure down the hierarchy.

(Inherited from View)
DispatchRestoreInstanceState(SparseArray)

Called by #restoreHierarchyState(android.util.SparseArray) to retrieve the state for this view and its children.

(Inherited from View)
DispatchSaveInstanceState(SparseArray)

Called by #saveHierarchyState(android.util.SparseArray) to store the state for this view and its children.

(Inherited from View)
DispatchScrollCaptureSearch(Rect, Point, IConsumer)

Dispatch a scroll capture search request down the view hierarchy.

(Inherited from View)
DispatchSetActivated(Boolean)

Dispatch setActivated to all of this View's children.

(Inherited from View)
DispatchSetPressed(Boolean)

Dispatch setPressed to all of this View's children.

(Inherited from View)
DispatchSetSelected(Boolean)

Dispatch setSelected to all of this View's children.

(Inherited from View)
DispatchStartTemporaryDetach()

Dispatch #onStartTemporaryDetach() to this View and its direct children if this is a container View.

(Inherited from View)
DispatchSystemUiVisibilityChanged(Int32)
Obsolete.
(Inherited from View)
DispatchSystemUiVisibilityChanged(SystemUiFlags)

Dispatch callbacks to #setOnSystemUiVisibilityChangeListener down the view hierarchy.

(Inherited from View)
DispatchTouchEvent(MotionEvent)

Pass the touch screen motion event down to the target view, or this view if it is the target.

(Inherited from View)
DispatchTrackballEvent(MotionEvent)

Pass a trackball motion event down to the focused view.

(Inherited from View)
DispatchUnhandledMove(View, FocusSearchDirection)

This method is the last chance for the focused view and its ancestors to respond to an arrow key.

(Inherited from View)
DispatchVisibilityChanged(View, ViewStates)

Dispatch a view visibility change down the view hierarchy.

(Inherited from View)
DispatchWindowFocusChanged(Boolean)

Called when the window containing this view gains or loses window focus.

(Inherited from View)
DispatchWindowInsetsAnimationEnd(WindowInsetsAnimation)

Dispatches WindowInsetsAnimation.Callback#onEnd(WindowInsetsAnimation) when Window Insets animation ends.

(Inherited from View)
DispatchWindowInsetsAnimationPrepare(WindowInsetsAnimation)

Dispatches WindowInsetsAnimation.Callback#onPrepare(WindowInsetsAnimation) when Window Insets animation is being prepared.

(Inherited from View)
DispatchWindowInsetsAnimationProgress(WindowInsets, IList<WindowInsetsAnimation>)

Dispatches WindowInsetsAnimation.Callback#onProgress(WindowInsets, List) when Window Insets animation makes progress.

(Inherited from View)
DispatchWindowInsetsAnimationStart(WindowInsetsAnimation, WindowInsetsAnimation+Bounds)

Dispatches WindowInsetsAnimation.Callback#onStart(WindowInsetsAnimation, Bounds) when Window Insets animation is started.

(Inherited from View)
DispatchWindowSystemUiVisiblityChanged(SystemUiFlags)

Dispatch callbacks to #onWindowSystemUiVisibilityChanged(int) down the view hierarchy.

(Inherited from View)
DispatchWindowVisibilityChanged(ViewStates)

Dispatch a window visibility change down the view hierarchy.

(Inherited from View)
Dispose() (Inherited from Object)
Dispose(Boolean) (Inherited from Object)
Draw(Canvas)

Manually render this view (and all of its children) to the given Canvas.

(Inherited from View)
DrawableHotspotChanged(Single, Single)

This function is called whenever the view hotspot changes and needs to be propagated to drawables or child views managed by the view.

(Inherited from View)
DrawableStateChanged()

This function is called whenever the state of the view changes in such a way that it impacts the state of drawables being shown.

(Inherited from View)
EndBatchEdit() (Inherited from TextView)
EnoughToFilter()

Returns true if the amount of text in the field meets or exceeds the #getThreshold requirement.

(Inherited from AutoCompleteTextView)
Equals(Object)

Indicates whether some other object is "equal to" this one.

(Inherited from Object)
ExtendSelection(Int32)

Convenience for Selection#extendSelection.

(Inherited from EditText)
ExtractText(ExtractedTextRequest, ExtractedText)

If this TextView contains editable content, extract a portion of it based on the information in <var>request</var> in to <var>outText</var>.

(Inherited from TextView)
FindFocus()

Find the view in the hierarchy rooted at this view that currently has focus.

(Inherited from View)
FindOnBackInvokedDispatcher()

Walk up the View hierarchy to find the nearest OnBackInvokedDispatcher.

(Inherited from View)
FindViewById(Int32)

Finds the first descendant view with the given ID, the view itself if the ID matches #getId(), or null if the ID is invalid (< 0) or there is no matching view in the hierarchy.

(Inherited from View)
FindViewById<T>(Int32) (Inherited from View)
FindViewsWithText(IList<View>, ICharSequence, FindViewsWith)

Finds the Views that contain given text.

(Inherited from View)
FindViewsWithText(IList<View>, String, FindViewsWith)

Finds the Views that contain given text.

(Inherited from View)
FindViewWithTag(Object)

Look for a child view with the given tag.

(Inherited from View)
FitSystemWindows(Rect)
Obsolete.

Called by the view hierarchy when the content insets for a window have changed, to allow it to adjust its content to fit within those windows.

(Inherited from View)
FocusSearch(FocusSearchDirection)

Find the nearest view in the specified direction that can take focus.

(Inherited from View)
ForceHasOverlappingRendering(Boolean)

Sets the behavior for overlapping rendering for this view (see #hasOverlappingRendering() for more details on this behavior).

(Inherited from View)
ForceLayout()

Forces this view to be laid out during the next layout pass.

(Inherited from View)
GatherTransparentRegion(Region)

This is used by the ViewRoot to perform an optimization when the view hierarchy contains one or several SurfaceView.

(Inherited from View)
GenerateDisplayHash(String, Rect, IExecutor, IDisplayHashResultCallback)

Called to generate a DisplayHash for this view.

(Inherited from View)
GetAccessibilityDelegate()

Returns the delegate for implementing accessibility support via composition.

(Inherited from View)
GetAttributeResolutionStack(Int32)

Returns the ordered list of resource ID that are considered when resolving attribute values for this View.

(Inherited from View)
GetAutofillHints()

Gets the hints that help an android.service.autofill.AutofillService determine how to autofill the view with the user's data.

(Inherited from View)
GetAutoSizeTextAvailableSizes() (Inherited from TextView)
GetClipBounds(Rect)

Populates an output rectangle with the clip bounds of the view, returning true if successful or false if the view's clip bounds are null.

(Inherited from View)
GetCompoundDrawables()

Returns drawables for the left, top, right, and bottom borders.

(Inherited from TextView)
GetCompoundDrawablesRelative()

Returns drawables for the start, top, end, and bottom borders.

(Inherited from TextView)
GetDrawableState()

Return an array of resource IDs of the drawable states representing the current state of the view.

(Inherited from View)
GetDrawingCache(Boolean)

Returns the bitmap in which this view drawing is cached.

(Inherited from View)
GetDrawingRect(Rect)

Return the visible drawing bounds of your view.

(Inherited from View)
GetFilters()

Returns the current list of input filters.

(Inherited from TextView)
GetFocusable()

Returns the focusable setting for this view.

(Inherited from View)
GetFocusables(FocusSearchDirection)

Find and return all focusable views that are descendants of this view, possibly including this view if it is focusable itself.

(Inherited from View)
GetFocusedRect(Rect)

When a view has focus and the user navigates away from it, the next view is searched for starting from the rectangle filled in by this method.

(Inherited from View)
GetGlobalVisibleRect(Rect)

Sets r to the coordinates of the non-clipped area of this view in the coordinate space of the view's root view.

(Inherited from View)
GetGlobalVisibleRect(Rect, Point)

Sets r to the coordinates of the non-clipped area of this view in the coordinate space of the view's root view.

(Inherited from View)
GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
GetHasOverlappingRendering()

Returns the value for overlapping rendering that is used internally.

(Inherited from View)
GetHitRect(Rect)

Hit rectangle in parent's coordinates

(Inherited from View)
GetInputExtras(Boolean)

Retrieve the input extras currently associated with the text view, which can be viewed as well as modified.

(Inherited from TextView)
GetLineBounds(Int32, Rect)

Return the baseline for the specified line (0.

(Inherited from TextView)
GetLocalVisibleRect(Rect)

Sets r to the coordinates of the non-clipped area of this view relative to the top left corner of the view.

(Inherited from View)
GetLocationInSurface(Int32[])

Gets the coordinates of this view in the coordinate space of the Surface that contains the view.

(Inherited from View)
GetLocationInWindow(Int32[])

Gets the coordinates of this view in the coordinate space of the window that contains the view, irrespective of system decorations.

(Inherited from View)
GetLocationOnScreen(Int32[])

Gets the coordinates of this view in the coordinate space of the device screen, irrespective of system decorations and whether the system is in multi-window mode.

(Inherited from View)
GetOffsetForPosition(Single, Single)

Get the character offset closest to the specified absolute position.

(Inherited from TextView)
GetReceiveContentMimeTypes()

Returns the MIME types accepted by #performReceiveContent for this view, as configured via #setOnReceiveContentListener.

(Inherited from View)
GetSearchResultHighlights()

Gets the current search result ranges.

(Inherited from TextView)
GetTag(Int32)

Returns the tag associated with this view and the specified key.

(Inherited from View)
GetUrls()

Returns the list of android.text.style.URLSpan URLSpans attached to the text (by Linkify or otherwise) if any.

(Inherited from TextView)
GetWindowVisibleDisplayFrame(Rect)

Retrieve the overall visible display size in which the window this view is attached to has been positioned in.

(Inherited from View)
GetX()

The visual x position of this view, in pixels.

(Inherited from View)
GetY()

The visual y position of this view, in pixels.

(Inherited from View)
GetZ()

The visual z position of this view, in pixels.

(Inherited from View)
InitializeFadingEdge(TypedArray)

Initializes the fading edges from a given set of styled attributes.

(Inherited from View)
InitializeScrollbars(TypedArray)

Initializes the scrollbars from a given set of styled attributes.

(Inherited from View)
Invalidate()

Invalidate the whole view.

(Inherited from View)
Invalidate(Int32, Int32, Int32, Int32)

Mark the area defined by the rect (l,t,r,b) as needing to be drawn.

(Inherited from View)
Invalidate(Rect)

Mark the area defined by dirty as needing to be drawn.

(Inherited from View)
InvalidateDrawable(Drawable)

Invalidates the specified Drawable.

(Inherited from View)
InvalidateOutline()

Called to rebuild this View's Outline from its ViewOutlineProvider outline provider

(Inherited from View)
InvokeFitsSystemWindows()
Obsolete.
(Inherited from View)
IsVisibleToUserForAutofill(Int32)

Computes whether this virtual autofill view is visible to the user.

(Inherited from View)
JavaFinalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

(Inherited from Object)
JumpDrawablesToCurrentState()

Call Drawable#jumpToCurrentState() Drawable.jumpToCurrentState() on all Drawable objects associated with this view.

(Inherited from View)
KeyboardNavigationClusterSearch(View, FocusSearchDirection)

Find the nearest keyboard navigation cluster in the specified direction.

(Inherited from View)
Layout(Int32, Int32, Int32, Int32)

Assign a size and position to a view and all of its descendants

(Inherited from View)
Length()

Returns the length, in characters, of the text managed by this TextView

(Inherited from TextView)
Measure(Int32, Int32)

This is called to find out how big a view should be.

(Inherited from View)
MoveCursorToVisibleOffset()

Move the cursor, if needed, so that it is at an offset that is visible to the user.

(Inherited from TextView)
Notify()

Wakes up a single thread that is waiting on this object's monitor.

(Inherited from Object)
NotifyAll()

Wakes up all threads that are waiting on this object's monitor.

(Inherited from Object)
OffsetLeftAndRight(Int32)

Offset this view's horizontal location by the specified amount of pixels.

(Inherited from View)
OffsetTopAndBottom(Int32)

Offset this view's vertical location by the specified number of pixels.

(Inherited from View)
OnAnimationEnd()

Invoked by a parent ViewGroup to notify the end of the animation currently associated with this view.

(Inherited from View)
OnAnimationStart()

Invoked by a parent ViewGroup to notify the start of the animation currently associated with this view.

(Inherited from View)
OnApplyWindowInsets(WindowInsets)

Called when the view should apply WindowInsets according to its internal policy.

(Inherited from View)
OnAttachedToWindow()

This is called when the view is attached to a window.

(Inherited from View)
OnBeginBatchEdit()

Called by the framework in response to a request to begin a batch of edit operations through a call to link #beginBatchEdit().

(Inherited from TextView)
OnCancelPendingInputEvents()

Called as the result of a call to #cancelPendingInputEvents() on this view or a parent view.

(Inherited from View)
OnCapturedPointerEvent(MotionEvent)

Implement this method to handle captured pointer events

(Inherited from View)
OnCheckIsTextEditor()

Check whether the called view is a text editor, in which case it would make sense to automatically display a soft input window for it.

(Inherited from View)
OnCommitCompletion(CompletionInfo)

Called by the framework in response to a text completion from the current input method, provided by it calling InputConnection#commitCompletion InputConnection.commitCompletion().

(Inherited from TextView)
OnCommitCorrection(CorrectionInfo)

Called by the framework in response to a text auto-correction (such as fixing a typo using a dictionary) from the current input method, provided by it calling InputConnection#commitCorrection(CorrectionInfo) InputConnection.commitCorrection().

(Inherited from TextView)
OnConfigurationChanged(Configuration)

Called when the current configuration of the resources being used by the application have changed.

(Inherited from View)
OnCreateContextMenu(IContextMenu)

Views should implement this if the view itself is going to add items to the context menu.

(Inherited from View)
OnCreateDrawableState(Int32)

Generate the new android.graphics.drawable.Drawable state for this view.

(Inherited from View)
OnCreateInputConnection(EditorInfo)

Create a new InputConnection for an InputMethod to interact with the view.

(Inherited from View)
OnCreateViewTranslationRequest(Int32[], IConsumer)

Collects a ViewTranslationRequest which represents the content to be translated in the view.

(Inherited from View)
OnCreateVirtualViewTranslationRequests(Int64[], Int32[], IConsumer)

Collects ViewTranslationRequests which represents the content to be translated for the virtual views in the host view.

(Inherited from View)
OnDetachedFromWindow()

This is called when the view is detached from a window.

(Inherited from View)
OnDisplayHint(Int32)

Gives this view a hint about whether is displayed or not.

(Inherited from View)
OnDragEvent(DragEvent)

Handles drag events sent by the system following a call to android.view.View#startDragAndDrop(ClipData,DragShadowBuilder,Object,int) startDragAndDrop().

(Inherited from View)
OnDraw(Canvas)

Implement this to do your drawing.

(Inherited from View)
OnDrawForeground(Canvas)

Draw any foreground content for this view.

(Inherited from View)
OnDrawScrollBars(Canvas)

Request the drawing of the horizontal and the vertical scrollbar.

(Inherited from View)
OnEditorAction(ImeAction)

Called when an attached input method calls InputConnection#performEditorAction(int) InputConnection.performEditorAction() for this text view.

(Inherited from TextView)
OnEndBatchEdit()

Called by the framework in response to a request to end a batch of edit operations through a call to link #endBatchEdit.

(Inherited from TextView)
OnFilterComplete(Int32)

To be added

(Inherited from AutoCompleteTextView)
OnFilterTouchEventForSecurity(MotionEvent)

Filter the touch event to apply security policies.

(Inherited from View)
OnFinishInflate()

Finalize inflating a view from XML.

(Inherited from View)
OnFinishTemporaryDetach()

Called after #onStartTemporaryDetach when the container is done changing the view.

(Inherited from View)
OnFocusChanged(Boolean, FocusSearchDirection, Rect)

Called by the view system when the focus state of this view changes.

(Inherited from View)
OnGenericMotionEvent(MotionEvent)

Implement this method to handle generic motion events.

(Inherited from View)
OnHoverChanged(Boolean)

Implement this method to handle hover state changes.

(Inherited from View)
OnHoverEvent(MotionEvent)

Implement this method to handle hover events.

(Inherited from View)
OnInitializeAccessibilityEvent(AccessibilityEvent)

Initializes an AccessibilityEvent with information about this View which is the event source.

(Inherited from View)
OnInitializeAccessibilityNodeInfo(AccessibilityNodeInfo)

Initializes an AccessibilityNodeInfo with information about this view.

(Inherited from View)
OnKeyDown(Keycode, KeyEvent)

Default implementation of KeyEvent.Callback#onKeyDown(int, KeyEvent) KeyEvent.Callback.onKeyDown(): perform press of the view when KeyEvent#KEYCODE_DPAD_CENTER or KeyEvent#KEYCODE_ENTER is released, if the view is enabled and clickable.

(Inherited from View)
OnKeyLongPress(Keycode, KeyEvent)

Default implementation of KeyEvent.Callback#onKeyLongPress(int, KeyEvent) KeyEvent.Callback.onKeyLongPress(): always returns false (doesn't handle the event).

(Inherited from View)
OnKeyMultiple(Keycode, Int32, KeyEvent)

Default implementation of KeyEvent.Callback#onKeyMultiple(int, int, KeyEvent) KeyEvent.Callback.onKeyMultiple(): always returns false (doesn't handle the event).

(Inherited from View)
OnKeyPreIme(Keycode, KeyEvent)

Handle a key event before it is processed by any input method associated with the view hierarchy.

(Inherited from View)
OnKeyShortcut(Keycode, KeyEvent)

Called on the focused view when a key shortcut event is not handled.

(Inherited from View)
OnKeyUp(Keycode, KeyEvent)

Default implementation of KeyEvent.Callback#onKeyUp(int, KeyEvent) KeyEvent.Callback.onKeyUp(): perform clicking of the view when KeyEvent#KEYCODE_DPAD_CENTER, KeyEvent#KEYCODE_ENTER or KeyEvent#KEYCODE_SPACE is released.

(Inherited from View)
OnLayout(Boolean, Int32, Int32, Int32, Int32)

Called from layout when this view should assign a size and position to each of its children.

(Inherited from View)
OnMeasure(Int32, Int32)

Measure the view and its content to determine the measured width and the measured height.

(Inherited from View)
OnOverScrolled(Int32, Int32, Boolean, Boolean)

Called by #overScrollBy(int, int, int, int, int, int, int, int, boolean) to respond to the results of an over-scroll operation.

(Inherited from View)
OnPointerCaptureChange(Boolean)

Called when the window has just acquired or lost pointer capture.

(Inherited from View)
OnPopulateAccessibilityEvent(AccessibilityEvent)

Called from #dispatchPopulateAccessibilityEvent(AccessibilityEvent) giving a chance to this View to populate the accessibility event with its text content.

(Inherited from View)
OnPreDraw()

To be added

(Inherited from TextView)
OnPrivateIMECommand(String, Bundle)

Called by the framework in response to a private command from the current method, provided by it calling InputConnection#performPrivateCommand InputConnection.performPrivateCommand().

(Inherited from TextView)
OnProvideAutofillStructure(ViewStructure, AutofillFlags)

Populates a ViewStructure to fullfil an autofill request.

(Inherited from View)
OnProvideAutofillVirtualStructure(ViewStructure, AutofillFlags)

Populates a ViewStructure containing virtual children to fullfil an autofill request.

(Inherited from View)
OnProvideContentCaptureStructure(ViewStructure, Int32)

Populates a ViewStructure for content capture.

(Inherited from View)
OnProvideStructure(ViewStructure)

Called when assist structure is being retrieved from a view as part of android.app.Activity#onProvideAssistData Activity.onProvideAssistData.

(Inherited from View)
OnProvideVirtualStructure(ViewStructure)

Called when assist structure is being retrieved from a view as part of android.app.Activity#onProvideAssistData Activity.onProvideAssistData to generate additional virtual structure under this view.

(Inherited from View)
OnReceiveContent(ContentInfo)

Implements the default behavior for receiving content for this type of view.

(Inherited from View)
OnResolvePointerIcon(MotionEvent, Int32)

Resolve the pointer icon that should be used for specified pointer in the motion event.

(Inherited from View)
OnRestoreInstanceState(IParcelable)

Hook allowing a view to re-apply a representation of its internal state that had previously been generated by OnSaveInstanceState().

(Inherited from TextView)
OnRtlPropertiesChanged(LayoutDirection)

Called when any RTL property (layout direction or text direction or text alignment) has been changed.

(Inherited from View)
OnSaveInstanceState()

Hook allowing a view to generate a representation of its internal state that can later be used to create a new instance with that same state.

(Inherited from TextView)
OnScreenStateChanged(ScreenState)

This method is called whenever the state of the screen this view is attached to changes.

(Inherited from View)
OnScrollCaptureSearch(Rect, Point, IConsumer)

Called when scroll capture is requested, to search for appropriate content to scroll.

(Inherited from View)
OnScrollChanged(Int32, Int32, Int32, Int32)

This is called in response to an internal scroll in this view (i.

(Inherited from View)
OnSelectionChanged(Int32, Int32)

This method is called when the selection has changed, in case any subclasses would like to know.

(Inherited from TextView)
OnSetAlpha(Int32)

Invoked if there is a Transform that involves alpha.

(Inherited from View)
OnSizeChanged(Int32, Int32, Int32, Int32)

This is called during layout when the size of this view has changed.

(Inherited from View)
OnStartTemporaryDetach()

This is called when a container is going to temporarily detach a child, with ViewGroup#detachViewFromParent(View) ViewGroup.detachViewFromParent.

(Inherited from View)
OnTextChanged(ICharSequence, Int32, Int32, Int32)

This method is called when the text is changed, in case any subclasses would like to know.

(Inherited from TextView)
OnTextChanged(String, Int32, Int32, Int32)

This method is called when the text is changed, in case any subclasses would like to know.

(Inherited from TextView)
OnTextContextMenuItem(Int32)

Called when a context menu option for the text view is selected.

(Inherited from TextView)
OnTouchEvent(MotionEvent)

Implement this method to handle touch screen motion events.

(Inherited from View)
OnTrackballEvent(MotionEvent)

Implement this method to handle trackball motion events.

(Inherited from View)
OnViewTranslationResponse(ViewTranslationResponse)

Called when the content from View#onCreateViewTranslationRequest had been translated by the TranslationService.

(Inherited from View)
OnVirtualViewTranslationResponses(LongSparseArray)

Called when the content from View#onCreateVirtualViewTranslationRequests had been translated by the TranslationService.

(Inherited from View)
OnVisibilityAggregated(Boolean)

Called when the user-visibility of this View is potentially affected by a change to this view itself, an ancestor view or the window this view is attached to.

(Inherited from View)
OnVisibilityChanged(View, ViewStates)

Called when the visibility of the view or an ancestor of the view has changed.

(Inherited from View)
OnWindowFocusChanged(Boolean)

Called when the window containing this view gains or loses focus.

(Inherited from View)
OnWindowSystemUiVisibilityChanged(SystemUiFlags)

Override to find out when the window's requested system UI visibility has changed, that is the value returned by #getWindowSystemUiVisibility().

(Inherited from View)
OnWindowVisibilityChanged(ViewStates)

Called when the window containing has change its visibility (between #GONE, #INVISIBLE, and #VISIBLE).

(Inherited from View)
OverScrollBy(Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Boolean)

Scroll the view with standard behavior for scrolling beyond the normal content boundaries.

(Inherited from View)
PerformAccessibilityAction(Action, Bundle)

Performs the specified accessibility action on the view.

(Inherited from View)
PerformAccessibilityAction(GlobalAction, Bundle)
Obsolete.

Performs the specified accessibility action on the view.

(Inherited from View)
PerformClick()

Call this view's OnClickListener, if it is defined.

(Inherited from View)
PerformCompletion()

Performs the text completion by converting the selected item from the drop down list into a string, replacing the text box's content with this string and finally dismissing the drop down menu.

(Inherited from AutoCompleteTextView)
PerformContextClick()

Call this view's OnContextClickListener, if it is defined.

(Inherited from View)
PerformContextClick(Single, Single)

Call this view's OnContextClickListener, if it is defined.

(Inherited from View)
PerformFiltering(ICharSequence, Int32)

Starts filtering the content of the drop down list.

(Inherited from AutoCompleteTextView)
PerformFiltering(ICharSequence, Int32, Int32, Int32)

Starts filtering the content of the drop down list.

PerformFiltering(String, Int32)

Starts filtering the content of the drop down list.

(Inherited from AutoCompleteTextView)
PerformFiltering(String, Int32, Int32, Int32)

Starts filtering the content of the drop down list.

PerformHapticFeedback(FeedbackConstants)

BZZZTT!!1!

(Inherited from View)
PerformHapticFeedback(FeedbackConstants, FeedbackFlags)

BZZZTT!!1!

(Inherited from View)
PerformLongClick()

Calls this view's OnLongClickListener, if it is defined.

(Inherited from View)
PerformLongClick(Single, Single)

Calls this view's OnLongClickListener, if it is defined.

(Inherited from View)
PerformReceiveContent(ContentInfo)

Receives the given content.

(Inherited from View)
PerformValidation()

If a validator was set on this view and the current string is not valid, ask the validator to fix it.

(Inherited from AutoCompleteTextView)
PlaySoundEffect(SoundEffects)

Play a sound effect for this view.

(Inherited from View)
Post(Action) (Inherited from View)
Post(IRunnable)

Causes the Runnable to be added to the message queue.

(Inherited from View)
PostDelayed(Action, Int64) (Inherited from View)
PostDelayed(IRunnable, Int64)

Causes the Runnable to be added to the message queue, to be run after the specified amount of time elapses.

(Inherited from View)
PostInvalidate()

Cause an invalidate to happen on a subsequent cycle through the event loop.

(Inherited from View)
PostInvalidate(Int32, Int32, Int32, Int32)

Cause an invalidate of the specified area to happen on a subsequent cycle through the event loop.

(Inherited from View)
PostInvalidateDelayed(Int64)

Cause an invalidate to happen on a subsequent cycle through the event loop.

(Inherited from View)
PostInvalidateDelayed(Int64, Int32, Int32, Int32, Int32)

Cause an invalidate of the specified area to happen on a subsequent cycle through the event loop.

(Inherited from View)
PostInvalidateOnAnimation()

Cause an invalidate to happen on the next animation time step, typically the next display frame.

(Inherited from View)
PostInvalidateOnAnimation(Int32, Int32, Int32, Int32)

Cause an invalidate of the specified area to happen on the next animation time step, typically the next display frame.

(Inherited from View)
PostOnAnimation(IRunnable)

Causes the Runnable to execute on the next animation time step.

(Inherited from View)
PostOnAnimationDelayed(IRunnable, Int64)

Causes the Runnable to execute on the next animation time step, after the specified amount of time elapses.

(Inherited from View)
RefreshAutoCompleteResults()

Refreshes the auto complete results.

(Inherited from AutoCompleteTextView)
RefreshDrawableState()

Call this to force a view to update its drawable state.

(Inherited from View)
ReleasePointerCapture()

Releases the pointer capture.

(Inherited from View)
RemoveCallbacks(Action) (Inherited from View)
RemoveCallbacks(IRunnable)

Removes the specified Runnable from the message queue.

(Inherited from View)
RemoveOnAttachStateChangeListener(View+IOnAttachStateChangeListener)

Remove a listener for attach state changes.

(Inherited from View)
RemoveOnLayoutChangeListener(View+IOnLayoutChangeListener)

Remove a listener for layout changes.

(Inherited from View)
RemoveOnUnhandledKeyEventListener(View+IOnUnhandledKeyEventListener)

Removes a listener which will receive unhandled KeyEvents.

(Inherited from View)
RemoveTextChangedListener(ITextWatcher)

Removes the specified TextWatcher from the list of those whose methods are called whenever this TextView's text changes.

(Inherited from TextView)
ReplaceText(ICharSequence)

Performs the text completion by replacing the current text by the selected item.

(Inherited from AutoCompleteTextView)
ReplaceText(String)

Performs the text completion by replacing the current text by the selected item.

(Inherited from AutoCompleteTextView)
RequestApplyInsets()

Ask that a new dispatch of #onApplyWindowInsets(WindowInsets) be performed.

(Inherited from View)
RequestFitSystemWindows()
Obsolete.

Ask that a new dispatch of #fitSystemWindows(Rect) be performed.

(Inherited from View)
RequestFocus()

Call this to try to give focus to a specific view or to one of its descendants.

(Inherited from View)
RequestFocus(FocusSearchDirection)

Call this to try to give focus to a specific view or to one of its descendants and give it a hint about what direction focus is heading.

(Inherited from View)
RequestFocus(FocusSearchDirection, Rect)

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from.

(Inherited from View)
RequestFocusFromTouch()

Call this to try to give focus to a specific view or to one of its descendants.

(Inherited from View)
RequestLayout()

Call this when something has changed which has invalidated the layout of this view.

(Inherited from View)
RequestPointerCapture()

Requests pointer capture mode.

(Inherited from View)
RequestRectangleOnScreen(Rect)

Request that a rectangle of this view be visible on the screen, scrolling if necessary just enough.

(Inherited from View)
RequestRectangleOnScreen(Rect, Boolean)

Request that a rectangle of this view be visible on the screen, scrolling if necessary just enough.

(Inherited from View)
RequestUnbufferedDispatch(Int32)

Request unbuffered dispatch of the given event source class to this view.

(Inherited from View)
RequestUnbufferedDispatch(MotionEvent)

Request unbuffered dispatch of the given stream of MotionEvents to this View.

(Inherited from View)
RequireViewById(Int32)

Finds the first descendant view with the given ID, the view itself if the ID matches #getId(), or throws an IllegalArgumentException if the ID is invalid or there is no matching view in the hierarchy.

(Inherited from View)
RequireViewById<T>(Int32) (Inherited from View)
ResetPivot()

Clears any pivot previously set by a call to #setPivotX(float) or #setPivotY(float).

(Inherited from View)
ResetResolvedDrawables() (Inherited from TextView)
ResetResolvedLayoutDirection() (Inherited from TextView)
ResolveDrawables() (Inherited from TextView)
ResolveTextDirection() (Inherited from TextView)
RestoreDefaultFocus()

Gives focus to the default-focus view in the view hierarchy that has this view as a root.

(Inherited from View)
RestoreHierarchyState(SparseArray)

Restore this view hierarchy's frozen state from the given container.

(Inherited from View)
SaveAttributeDataForStyleable(Context, Int32[], IAttributeSet, TypedArray, Int32, Int32)

Stores debugging information about attributes.

(Inherited from View)
SaveHierarchyState(SparseArray)

Store this view hierarchy's frozen state into the given container.

(Inherited from View)
ScheduleDrawable(Drawable, Action, Int64) (Inherited from View)
ScheduleDrawable(Drawable, IRunnable, Int64)

Schedules an action on a drawable to occur at a specified time.

(Inherited from View)
ScrollBy(Int32, Int32)

Move the scrolled position of your view.

(Inherited from View)
ScrollTo(Int32, Int32)

Set the scrolled position of your view.

(Inherited from View)
SelectAll()

Convenience for Selection#selectAll.

(Inherited from EditText)
SendAccessibilityEvent(EventTypes)

Sends an accessibility event of the given type.

(Inherited from View)
SendAccessibilityEventUnchecked(AccessibilityEvent)

This method behaves exactly as #sendAccessibilityEvent(int) but takes as an argument an empty AccessibilityEvent and does not perform a check whether accessibility is enabled.

(Inherited from View)
SetAccessibilityDataSensitive(AccessibilityDataSensitive)

Specifies whether this view should only allow interactions from android.accessibilityservice.AccessibilityServices with the android.accessibilityservice.AccessibilityServiceInfo#isAccessibilityTool property set to true.

(Inherited from View)
SetAccessibilityDelegate(View+AccessibilityDelegate)

Sets a delegate for implementing accessibility support via composition (as opposed to inheritance).

(Inherited from View)
SetAllCaps(Boolean)

Sets the properties of this field to transform input to ALL CAPS display.

(Inherited from TextView)
SetAllowClickWhenDisabled(Boolean)

Enables or disables click events for this view when disabled.

(Inherited from View)
SetAllowedHandwritingDelegatePackage(String)

Specifies that this view may act as a handwriting initiation delegator for a delegate editor view from the specified package.

(Inherited from View)
SetAllowedHandwritingDelegatorPackage(String)

Specifies that a view from the specified package may act as a handwriting delegator for this delegate editor view.

(Inherited from View)
SetAutofillHints(String[])

Sets the hints that help an android.service.autofill.AutofillService determine how to autofill the view with the user's data.

(Inherited from View)
SetAutoSizeTextTypeUniformWithConfiguration(Int32, Int32, Int32, Int32)

Specify whether this widget should automatically scale the text to try to perfectly fit within the layout bounds.

(Inherited from TextView)
SetAutoSizeTextTypeUniformWithPresetSizes(Int32[], Int32)

Specify whether this widget should automatically scale the text to try to perfectly fit within the layout bounds.

(Inherited from TextView)
SetAutoSizeTextTypeWithDefaults(AutoSizeTextType)

Specify whether this widget should automatically scale the text to try to perfectly fit within the layout bounds by using the default auto-size configuration.

(Inherited from TextView)
SetBackgroundColor(Color)

Sets the background color for this view.

(Inherited from View)
SetBackgroundDrawable(Drawable)
Obsolete.

This member is deprecated.

(Inherited from View)
SetBackgroundResource(Int32)

Set the background to a given resource.

(Inherited from View)
SetCameraDistance(Single)

Sets the distance along the Z axis (orthogonal to the X/Y plane on which views are drawn) from the camera to this view.

(Inherited from View)
SetCompletionHint(ICharSequence)

Sets the optional hint text that is displayed at the bottom of the the matching list.

(Inherited from AutoCompleteTextView)
SetCompletionHint(String)

Sets the optional hint text that is displayed at the bottom of the the matching list.

(Inherited from AutoCompleteTextView)
SetCompoundDrawables(Drawable, Drawable, Drawable, Drawable)

Sets the Drawables (if any) to appear to the left of, above, to the right of, and below the text.

(Inherited from TextView)
SetCompoundDrawablesRelative(Drawable, Drawable, Drawable, Drawable)

Sets the Drawables (if any) to appear to the start of, above, to the end of, and below the text.

(Inherited from TextView)
SetCompoundDrawablesRelativeWithIntrinsicBounds(Drawable, Drawable, Drawable, Drawable)

Sets the Drawables (if any) to appear to the start of, above, to the end of, and below the text.

(Inherited from TextView)
SetCompoundDrawablesRelativeWithIntrinsicBounds(Int32, Int32, Int32, Int32)

Sets the Drawables (if any) to appear to the start of, above, to the end of, and below the text.

(Inherited from TextView)
SetCompoundDrawablesWithIntrinsicBounds(Drawable, Drawable, Drawable, Drawable)

Sets the Drawables (if any) to appear to the left of, above, to the right of, and below the text.

(Inherited from TextView)
SetCompoundDrawablesWithIntrinsicBounds(Int32, Int32, Int32, Int32)

Sets the Drawables (if any) to appear to the left of, above, to the right of, and below the text.

(Inherited from TextView)
SetCursorVisible(Boolean)

Set whether the cursor is visible.

(Inherited from TextView)
SetDropDownBackgroundDrawable(Drawable)

Sets the background of the auto-complete drop-down list.

(Inherited from AutoCompleteTextView)
SetDropDownBackgroundResource(Int32)

Sets the background of the auto-complete drop-down list.

(Inherited from AutoCompleteTextView)
SetEditableFactory(EditableFactory)

Sets the Factory used to create new Editable Editables.

(Inherited from TextView)
SetElegantTextHeight(Boolean)

Set the TextView's elegant height metrics flag.

(Inherited from TextView)
SetEms(Int32)

Sets the width of the TextView to be exactly ems wide.

(Inherited from TextView)
SetError(ICharSequence, Drawable)

Sets the right-hand compound drawable of the TextView to the specified icon and sets an error message that will be displayed in a popup when the TextView has focus.

(Inherited from TextView)
SetError(String, Drawable)

Sets the right-hand compound drawable of the TextView to the specified icon and sets an error message that will be displayed in a popup when the TextView has focus.

(Inherited from TextView)
SetExtractedText(ExtractedText)

Apply to this text view the given extracted text, as previously returned by #extractText(ExtractedTextRequest, ExtractedText).

(Inherited from TextView)
SetFadingEdgeLength(Int32)

Set the size of the faded edge used to indicate that more content in this view is available.

(Inherited from View)
SetFilters(IInputFilter[])

Sets the list of input filters that will be used if the buffer is Editable.

(Inherited from TextView)
SetFitsSystemWindows(Boolean)

Sets whether or not this view should account for system screen decorations such as the status bar and inset its content; that is, controlling whether the default implementation of #fitSystemWindows(Rect) will be executed.

(Inherited from View)
SetFocusable(ViewFocusability)

Sets whether this view can receive focus.

(Inherited from View)
SetFocusedSearchResultHighlightColor(Color)

Sets focused search result highlight color.

(Inherited from TextView)
SetFontVariationSettings(String)

Sets TrueType or OpenType font variation settings.

(Inherited from TextView)
SetForegroundGravity(GravityFlags)

Describes how the foreground is positioned.

(Inherited from View)
SetFrame(Int32, Int32, Int32, Int32)

Assign a size and position to this view.

(Inherited from TextView)
SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
SetHandwritingBoundsOffsets(Single, Single, Single, Single)

Set the amount of offset applied to this view's stylus handwriting bounds.

(Inherited from View)
SetHeight(Int32)

Sets the height of the TextView to be exactly pixels tall.

(Inherited from TextView)
SetHighlightColor(Color)

Sets the color used to display the selection highlight.

(Inherited from TextView)
SetHint(Int32)

Sets the text to be displayed when the text of the TextView is empty, from a resource.

(Inherited from TextView)
SetHintTextColor(Color)

Sets the color of the hint text for all the states (disabled, focussed, selected.

(Inherited from TextView)
SetHintTextColor(ColorStateList)

Sets the color of the hint text.

(Inherited from TextView)
SetHorizontallyScrolling(Boolean)

Sets whether the text should be allowed to be wider than the View is.

(Inherited from TextView)
SetImeActionLabel(ICharSequence, ImeAction)

Change the custom IME action associated with the text view, which will be reported to an IME with EditorInfo#actionLabel and EditorInfo#actionId when it has focus.

(Inherited from TextView)
SetImeActionLabel(String, ImeAction)

Change the custom IME action associated with the text view, which will be reported to an IME with EditorInfo#actionLabel and EditorInfo#actionId when it has focus.

(Inherited from TextView)
SetIncludeFontPadding(Boolean)

Set whether the TextView includes extra top and bottom padding to make room for accents that go above the normal ascent and descent.

(Inherited from TextView)
SetInputExtras(Int32)

Set the extra input data of the text, which is the EditorInfo#extras TextBoxAttribute.extras Bundle that will be filled in when creating an input connection.

(Inherited from TextView)
SetLayerPaint(Paint)

Updates the Paint object used with the current layer (used only if the current layer type is not set to #LAYER_TYPE_NONE).

(Inherited from View)
SetLayerType(LayerType, Paint)

Specifies the type of layer backing this view.

(Inherited from View)
SetLeftTopRightBottom(Int32, Int32, Int32, Int32)

Assign a size and position to this view.

(Inherited from View)
SetLineHeight(Int32, Single)

Sets an explicit line height to a given unit and value for this TextView.

(Inherited from TextView)
SetLines(Int32)

Sets the height of the TextView to be exactly lines tall.

(Inherited from TextView)
SetLineSpacing(Single, Single)

Sets line spacing for this TextView.

(Inherited from TextView)
SetLinkTextColor(Color)

Sets the color of links in the text.

(Inherited from TextView)
SetLinkTextColor(ColorStateList)

Sets the color of links in the text.

(Inherited from TextView)
SetMarqueeRepeatLimit(Int32)

Sets how many times to repeat the marquee animation.

(Inherited from TextView)
SetMaxEms(Int32)

Sets the width of the TextView to be at most maxEms wide.

(Inherited from TextView)
SetMaxHeight(Int32)

Sets the height of the TextView to be at most maxPixels tall.

(Inherited from TextView)
SetMaxLines(Int32)

Sets the height of the TextView to be at most maxLines tall.

(Inherited from TextView)
SetMaxWidth(Int32)

Sets the width of the TextView to be at most maxPixels wide.

(Inherited from TextView)
SetMeasuredDimension(Int32, Int32)

This method must be called by #onMeasure(int, int) to store the measured width and measured height.

(Inherited from View)
SetMinEms(Int32)

Sets the width of the TextView to be at least minEms wide.

(Inherited from TextView)
SetMinHeight(Int32)

Sets the height of the TextView to be at least minPixels tall.

(Inherited from TextView)
SetMinimumHeight(Int32)

Sets the minimum height of the view.

(Inherited from View)
SetMinimumWidth(Int32)

Sets the minimum width of the view.

(Inherited from View)
SetMinLines(Int32)

Sets the height of the TextView to be at least minLines tall.

(Inherited from TextView)
SetMinWidth(Int32)

Sets the width of the TextView to be at least minPixels wide.

(Inherited from TextView)
SetOnApplyWindowInsetsListener(View+IOnApplyWindowInsetsListener)

Set an OnApplyWindowInsetsListener to take over the policy for applying window insets to this view.

(Inherited from View)
SetOnCapturedPointerListener(View+IOnCapturedPointerListener)

Set a listener to receive callbacks when the pointer capture state of a view changes.

(Inherited from View)
SetOnClickListener(View+IOnClickListener)

Register a callback to be invoked when this view is clicked.

(Inherited from View)
SetOnContextClickListener(View+IOnContextClickListener)

Register a callback to be invoked when this view is context clicked.

(Inherited from View)
SetOnCreateContextMenuListener(View+IOnCreateContextMenuListener)

Register a callback to be invoked when the context menu for this view is being built.

(Inherited from View)
SetOnDismissListener(AutoCompleteTextView+IOnDismissListener)

Set a listener that will be invoked whenever the AutoCompleteTextView's list of completions is dismissed.

(Inherited from AutoCompleteTextView)
SetOnDragListener(View+IOnDragListener)

Register a drag event listener callback object for this View.

(Inherited from View)
SetOnEditorActionListener(TextView+IOnEditorActionListener)

Set a special listener to be called when an action is performed on the text view.

(Inherited from TextView)
SetOnGenericMotionListener(View+IOnGenericMotionListener)

Register a callback to be invoked when a generic motion event is sent to this view.

(Inherited from View)
SetOnHoverListener(View+IOnHoverListener)

Register a callback to be invoked when a hover event is sent to this view.

(Inherited from View)
SetOnKeyListener(View+IOnKeyListener)

Register a callback to be invoked when a hardware key is pressed in this view.

(Inherited from View)
SetOnLongClickListener(View+IOnLongClickListener)

Register a callback to be invoked when this view is clicked and held.

(Inherited from View)
SetOnReceiveContentListener(String[], IOnReceiveContentListener)

Sets the listener to be #performReceiveContent used to handle insertion of content into this view.

(Inherited from View)
SetOnScrollChangeListener(View+IOnScrollChangeListener)

Register a callback to be invoked when the scroll X or Y positions of this view change.

(Inherited from View)
SetOnSystemUiVisibilityChangeListener(View+IOnSystemUiVisibilityChangeListener)

Set a listener to receive callbacks when the visibility of the system bar changes.

(Inherited from View)
SetOnTouchListener(View+IOnTouchListener)

Register a callback to be invoked when a touch event is sent to this view.

(Inherited from View)
SetOutlineAmbientShadowColor(Color)

Sets the color of the ambient shadow that is drawn when the view has a positive Z or elevation value.

(Inherited from View)
SetOutlineSpotShadowColor(Color)

Sets the color of the spot shadow that is drawn when the view has a positive Z or elevation value.

(Inherited from View)
SetPadding(Int32, Int32, Int32, Int32)

Sets the padding.

(Inherited from View)
SetPaddingRelative(Int32, Int32, Int32, Int32)

Sets the relative padding.

(Inherited from TextView)
SetRawInputType(InputTypes)

Directly change the content type integer of the text view, without modifying any other state.

(Inherited from TextView)
SetRenderEffect(RenderEffect)

Configure the android.graphics.RenderEffect to apply to this View.

(Inherited from View)
SetScrollCaptureCallback(IScrollCaptureCallback)

Sets the callback to receive scroll capture requests.

(Inherited from View)
SetScrollContainer(Boolean)

Change whether this view is one of the set of scrollable containers in its window.

(Inherited from View)
SetScroller(Scroller)

Sets the Scroller used for producing a scrolling animation

(Inherited from TextView)
SetScrollIndicators(Int32)

Sets the state of all scroll indicators.

(Inherited from View)
SetScrollIndicators(Int32, Int32)

Sets the state of the scroll indicators specified by the mask.

(Inherited from View)
SetSearchResultHighlightColor(Color)

Sets the search result highlight color.

(Inherited from TextView)
SetSearchResultHighlights(Int32[])

Sets the search result ranges with flatten range representation.

(Inherited from TextView)
SetSelectAllOnFocus(Boolean)

Set the TextView so that when it takes focus, all the text is selected.

(Inherited from TextView)
SetSelection(Int32)

Convenience for Selection#setSelection(Spannable, int).

(Inherited from EditText)
SetSelection(Int32, Int32)

Convenience for Selection#setSelection(Spannable, int, int).

(Inherited from EditText)
SetShadowLayer(Single, Single, Single, Color)

Gives the text a shadow of the specified blur radius and color, the specified distance from its drawn position.

(Inherited from TextView)
SetSingleLine()

Sets the properties of this field (lines, horizontally scrolling, transformation method) to be for a single-line input.

(Inherited from TextView)
SetSingleLine(Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input; if false, restores these to the default conditions.

(Inherited from TextView)
SetSpannableFactory(SpannableFactory)

Sets the Factory used to create new Spannable Spannables.

(Inherited from TextView)
SetStyleShortcutsEnabled(Boolean)

Enables styls shortcuts, e.

(Inherited from EditText)
SetTag(Int32, Object)

Sets a tag associated with this view and a key.

(Inherited from View)
SetText(Char[], Int32, Int32)

Sets the TextView to display the specified slice of the specified char array.

(Inherited from TextView)
SetText(ICharSequence, Boolean)

Like #setText(CharSequence), except that it can disable filtering.

(Inherited from AutoCompleteTextView)
SetText(ICharSequence, TextView+BufferType)

Sets the text to be displayed using a string resource identifier.

(Inherited from TextView)
SetText(Int32)

Sets the text to be displayed using a string resource identifier.

(Inherited from TextView)
SetText(Int32, TextView+BufferType)

Sets the text to be displayed using a string resource identifier.

(Inherited from TextView)
SetText(String, Boolean)

Like #setText(CharSequence), except that it can disable filtering.

(Inherited from AutoCompleteTextView)
SetText(String, TextView+BufferType)

Sets the text to be displayed using a string resource identifier.

(Inherited from TextView)
SetTextAppearance(Context, Int32)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

(Inherited from TextView)
SetTextAppearance(Int32)

Sets the text appearance from the specified style resource.

(Inherited from TextView)
SetTextColor(Color)

Sets the text color for all the states (normal, selected, focused) to be this color.

(Inherited from TextView)
SetTextColor(ColorStateList)

Sets the text color.

(Inherited from TextView)
SetTextCursorDrawable(Int32)

Sets the Drawable corresponding to the text cursor.

(Inherited from TextView)
SetTextIsSelectable(Boolean)

Sets whether the content of this view is selectable by the user.

(Inherited from TextView)
SetTextKeepState(ICharSequence)

Sets the text to be displayed but retains the cursor position.

(Inherited from TextView)
SetTextKeepState(ICharSequence, TextView+BufferType)

Sets the text to be displayed but retains the cursor position.

(Inherited from TextView)
SetTextKeepState(String)

Sets the text to be displayed but retains the cursor position.

(Inherited from TextView)
SetTextKeepState(String, TextView+BufferType)

Sets the text to be displayed but retains the cursor position.

(Inherited from TextView)
SetTextSelectHandle(Int32)

Sets the Drawable corresponding to the selection handle used for positioning the cursor within text.

(Inherited from TextView)
SetTextSelectHandleLeft(Int32)

Sets the Drawable corresponding to the left handle used for selecting text.

(Inherited from TextView)
SetTextSelectHandleRight(Int32)

Sets the Drawable corresponding to the right handle used for selecting text.

(Inherited from TextView)
SetTextSize(ComplexUnitType, Single)

Set the default text size to a given unit and value.

(Inherited from TextView)
SetTokenizer(MultiAutoCompleteTextView+ITokenizer)

Sets the Tokenizer that will be used to determine the relevant range of the text where the user is typing.

SetTransitionVisibility(ViewStates)

Changes the visibility of this View without triggering any other changes.

(Inherited from View)
SetTypeface(Typeface, TypefaceStyle)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

(Inherited from TextView)
SetViewTranslationCallback(IViewTranslationCallback)

Sets a ViewTranslationCallback that is used to display/hide the translated information.

(Inherited from View)
SetWidth(Int32)

Sets the width of the TextView to be exactly pixels wide.

(Inherited from TextView)
SetWillNotCacheDrawing(Boolean)

When a View's drawing cache is enabled, drawing is redirected to an offscreen bitmap.

(Inherited from View)
SetWillNotDraw(Boolean)

If this view doesn't do any drawing on its own, set this flag to allow further optimizations.

(Inherited from View)
SetWindowInsetsAnimationCallback(WindowInsetsAnimation+Callback)

Sets a WindowInsetsAnimation.Callback to be notified about animations of windows that cause insets.

(Inherited from View)
SetX(Single)

Sets the visual x position of this view, in pixels.

(Inherited from View)
SetY(Single)

Sets the visual y position of this view, in pixels.

(Inherited from View)
SetZ(Single)

Sets the visual z position of this view, in pixels.

(Inherited from View)
ShowContextMenu()

Shows the context menu for this view.

(Inherited from View)
ShowContextMenu(Single, Single)

Shows the context menu for this view anchored to the specified view-relative coordinate.

(Inherited from View)
ShowDropDown()

Displays the drop down on screen.

(Inherited from AutoCompleteTextView)
StartActionMode(ActionMode+ICallback)

Start an action mode with the default type ActionMode#TYPE_PRIMARY.

(Inherited from View)
StartActionMode(ActionMode+ICallback, ActionModeType)

Start an action mode with the default type ActionMode#TYPE_PRIMARY.

(Inherited from View)
StartAnimation(Animation)

Start the specified animation now.

(Inherited from View)
StartDrag(ClipData, View+DragShadowBuilder, Object, Int32)

Starts a drag and drop operation.

(Inherited from View)
StartDragAndDrop(ClipData, View+DragShadowBuilder, Object, Int32)

Starts a drag and drop operation.

(Inherited from View)
StartNestedScroll(ScrollAxis)

Begin a nestable scroll operation along the given axes.

(Inherited from View)
StopNestedScroll()

Stop a nested scroll in progress.

(Inherited from View)
ToArray<T>() (Inherited from Object)
ToString()

Returns a string representation of the object.

(Inherited from Object)
TransformMatrixToGlobal(Matrix)

Modifies the input matrix such that it maps view-local coordinates to on-screen coordinates.

(Inherited from View)
TransformMatrixToLocal(Matrix)

Modifies the input matrix such that it maps on-screen coordinates to view-local coordinates.

(Inherited from View)
UnregisterFromRuntime() (Inherited from Object)
UnscheduleDrawable(Drawable)

Unschedule any events associated with the given Drawable.

(Inherited from View)
UnscheduleDrawable(Drawable, Action) (Inherited from View)
UnscheduleDrawable(Drawable, IRunnable)

Cancels a scheduled action on a drawable.

(Inherited from View)
UpdateDragShadow(View+DragShadowBuilder)

Updates the drag shadow for the ongoing drag and drop operation.

(Inherited from View)
VerifyDrawable(Drawable)

If your view subclass is displaying its own Drawable objects, it should override this function and return true for any Drawable it is displaying.

(Inherited from View)
Wait()

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>.

(Inherited from Object)
Wait(Int64)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wait(Int64, Int32)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
WillNotCacheDrawing()

Returns whether or not this View can cache its drawing or not.

(Inherited from View)
WillNotDraw()

Returns whether or not this View draws on its own.

(Inherited from View)

Events

AfterTextChanged (Inherited from TextView)
BeforeTextChanged (Inherited from TextView)
CapturedPointer (Inherited from View)
Click (Inherited from View)
ContextClick (Inherited from View)
ContextMenuCreated (Inherited from View)
Dismiss (Inherited from AutoCompleteTextView)
Drag (Inherited from View)
EditorAction (Inherited from TextView)
FocusChange (Inherited from View)
GenericMotion (Inherited from View)
Hover (Inherited from View)
ItemClick (Inherited from AutoCompleteTextView)
ItemSelected (Inherited from AutoCompleteTextView)
ItemSelectionCleared
Obsolete.
(Inherited from AutoCompleteTextView)
KeyPress (Inherited from View)
LayoutChange (Inherited from View)
LongClick (Inherited from View)
LongClickUseDefaultHapticFeedback (Inherited from View)
NothingSelected (Inherited from AutoCompleteTextView)
ScrollChange (Inherited from View)
SystemUiVisibilityChange (Inherited from View)
TextChanged (Inherited from TextView)
Touch (Inherited from View)
UnhandledKeyEvent (Inherited from View)
ViewAttachedToWindow (Inherited from View)
ViewDetachedFromWindow (Inherited from View)

Explicit Interface Implementations

IJavaPeerable.Disposed() (Inherited from Object)
IJavaPeerable.DisposeUnlessReferenced() (Inherited from Object)
IJavaPeerable.Finalized() (Inherited from Object)
IJavaPeerable.JniManagedPeerState (Inherited from Object)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from Object)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from Object)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
GetJniTypeName(IJavaPeerable)

Applies to