====== ThinkGeo.MapSuite.AndroidEdition.MapView ====== {{section>upgrade_map_suite_to_10.0}} This class represents the map control. ===== Inheritance Hierarchy ===== *System.Object *Java.Lang.Object *Android.Views.View *Android.Views.ViewGroup *Android.Widget.RelativeLayout ***ThinkGeo.MapSuite.AndroidEdition.MapView** ===== Members Summary ===== ==== Public Constructors ==== ** {{wiki:PublicMethod.gif|}} MapView(Context) ** * //Initializes a new instance of the class.// == Remarks == * //N/A// == Parameters == * //context// * Type:Context * Description:Interface to global information about an application environment.
** {{wiki:PublicMethod.gif|}} MapView(Context,IAttributeSet) ** * //Initializes a new instance of the class.// == Remarks == * //N/A// == Parameters == * //context// * Type:Context * Description:Interface to global information about an application environment. * //attrs// * Type:IAttributeSet * Description:A collection of attributes, as found associated with a tag in an XML document.
** {{wiki:PublicMethod.gif|}} MapView(Context,IAttributeSet,Int32) ** * //Initializes a new instance of the class.// == Remarks == * //N/A// == Parameters == * //context// * Type:Context * Description:Interface to global information about an application environment. * //attrs// * Type:IAttributeSet * Description:A collection of attributes, as found associated with a tag in an XML document. * //defStyle// * Type:Int32 * Description:The definition style.
==== Protected Constructors ==== ==== Public Methods ==== ** {{wiki:PublicMethod.gif|}} Close() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Pan(PanDirection,Int32) ** * //This method will simulate the Pan interaction. Pans the map by the specified direction and percentage.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //direction// * Type:[[ThinkGeo.MapSuite.Core.PanDirection|PanDirection]] * Description:The direction to be paned. * //percentage// * Type:Int32 * Description:The percentage to be paned.
** {{wiki:PublicMethod.gif|}} Refresh(IEnumerable) ** * //This method will simulate the Refresh interaction. Refreshes a specified overlay collection.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //overlays// * Type:IEnumerable<[[ThinkGeo.MapSuite.AndroidEdition.Overlay|Overlay]]> * Description:A collection of overlay to be refreshed.
** {{wiki:PublicMethod.gif|}} Refresh() ** * //This method will simulate the Refresh interaction. Refreshes current map control.// == Remarks == * //Refreshes all the existing overlays and map tools.// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CenterAt(Feature) ** * //Locates the map center to the center of the specified feature.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //feature// * Type:[[ThinkGeo.MapSuite.Core.Feature|Feature]] * Description:N/A
** {{wiki:PublicMethod.gif|}} CenterAt(Double,Double) ** * //Locates the map center to the worldX and worldY.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //worldX// * Type:Double * Description:The x of the world point. * //worldY// * Type:Double * Description:The y of the world point.
** {{wiki:PublicMethod.gif|}} CenterAt(PointShape) ** * //Locates the map center to the specified world point.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //worldCenter// * Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] * Description:A world point to locate the map.
** {{wiki:PublicMethod.gif|}} ZoomTo(Feature) ** * //This method zooms current map to the specified feature.// == Remarks == * //When calling this method, it doesn't refresh existing Tiles on the current map. For example, if using a TileOverlay such as LayerOverlay; a layer style is changed, Refresh method is proper to call.// == Return Value == * Type:Void * Description:N/A == Parameters == * //feature// * Type:[[ThinkGeo.MapSuite.Core.Feature|Feature]] * Description:A feature to locates the map.
** {{wiki:PublicMethod.gif|}} ZoomTo(BaseShape) ** * //This method zooms current map to the target shape.// == Remarks == * //When calling this method, it doesn't refresh existing Tiles on the current map. For example, if using a TileOverlay such as LayerOverlay; a layer style is changed, Refresh method is proper to call.// == Return Value == * Type:Void * Description:N/A == Parameters == * //targetShape// * Type:[[ThinkGeo.MapSuite.Core.BaseShape|BaseShape]] * Description:A shape to locates the map.
** {{wiki:PublicMethod.gif|}} ZoomTo(PointShape,Double) ** * //This method zooms current map to a specified position and scale.// == Remarks == * //When calling this method, it doesn't refresh existing Tiles on the current map. For example, if using a TileOverlay such as LayerOverlay; a layer style is changed, Refresh method is proper to call.// == Return Value == * Type:Void * Description:N/A == Parameters == * //targetWorldCenter// * Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] * Description:A world center to zoom the map to. * //targetScale// * Type:Double * Description:A double value indicates the scale to zoom the map to.
** {{wiki:PublicMethod.gif|}} ZoomIn(Int32) ** * //This method will simulate the ZoomIn interaction. Zooms the map in by the provided percentage.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Int32 * Description:A scale to zoom the map in.
** {{wiki:PublicMethod.gif|}} ZoomOut(Int32) ** * //This method will simulate the ZoomOut interaction. Zooms the map out by the provided percentage.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Int32 * Description:A scale to zoom the map out.
** {{wiki:PublicMethod.gif|}} ZoomToScale(Double) ** * //Zooms the map to a provided scale. This method will simulate the ZoomToScale interaction.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //targetScale// * Type:Double * Description:A target scale to zoom the map.
** {{wiki:PublicMethod.gif|}} ZoomToPreviousExtent() ** * //Zooms the map to the previous extent.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ZoomToNextExtent() ** * //Zooms the map to the next extent.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ZoomInByAnchorPoint(ScreenPointF) ** * //Zooms the map in by the touch position. This method will simulate the ZoomInByAnchorPoint interaction.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //touchPosition// * Type:[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]] * Description:A position to zoom in map.
** {{wiki:PublicMethod.gif|}} ToWorldCoordinate(ScreenPointF) ** * //Converts the provided screen points to world points.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] * Description:A world point that is converted from the provided parameters. == Parameters == * //screenCoordinate// * Type:[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]] * Description:Screen point to be converted.
** {{wiki:PublicMethod.gif|}} ToScreenCoordinate(PointShape) ** * //Converts the provided world points to screen points.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]] * Description:A screen coordinate that is converted. == Parameters == * //worldCoordinate// * Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] * Description:World coordinate to be converted.
** {{wiki:PublicMethod.gif|}} GetSnappedZoomLevelIndex(Double) ** * //Gets the snapped zoom level index from the provided scale.// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:A snapped zoom level index in scale list sychnonized by the SyncZoomLevelScales method. == Parameters == * //scale// * Type:Double * Description:A scale to be snapped.
** {{wiki:PublicMethod.gif|}} SetGravity(GravityFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //gravity// * Type:GravityFlags * Description:N/A
** {{wiki:PublicMethod.gif|}} SetHorizontalGravity(GravityFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //horizontalGravity// * Type:GravityFlags * Description:N/A
** {{wiki:PublicMethod.gif|}} SetIgnoreGravity(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //viewId// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} SetVerticalGravity(GravityFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //verticalGravity// * Type:GravityFlags * Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveAllViewsInLayout() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} RemoveView(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //view// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveViewAt(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //index// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveViewInLayout(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //view// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveViews(Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //start// * Type:Int32 * Description:N/A * //count// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveViewsInLayout(Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //start// * Type:Int32 * Description:N/A * //count// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestChildFocus(View,View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //focused// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestChildRectangleOnScreen(View,Rect,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //rectangle// * Type:Rect * Description:N/A * //immediate// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestDisallowInterceptTouchEvent(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //disallowIntercept// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestSendAccessibilityEvent(View,AccessibilityEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //e// * Type:AccessibilityEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestTransparentRegion(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} ScheduleLayoutAnimation() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} SetAddStatesFromChildren(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //addsStates// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} SetClipChildren(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //clipChildren// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} SetClipToPadding(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //clipToPadding// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} SetOnHierarchyChangeListener(IOnHierarchyChangeListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //listener// * Type:IOnHierarchyChangeListener * Description:N/A
** {{wiki:PublicMethod.gif|}} ShouldDelayChildPressedState() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ShowContextMenuForChild(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //originalView// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} StartActionModeForChild(View,ICallback) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ActionMode * Description:N/A == Parameters == * //originalView// * Type:View * Description:N/A * //callback// * Type:ICallback * Description:N/A
** {{wiki:PublicMethod.gif|}} StartLayoutAnimation() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} StartViewTransition(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //view// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} UpdateViewLayout(View,LayoutParams) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //view// * Type:View * Description:N/A * //params// * Type:LayoutParams * Description:N/A
** {{wiki:PublicMethod.gif|}} FocusSearch(View,FocusSearchDirection) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:View * Description:N/A == Parameters == * //focused// * Type:View * Description:N/A * //direction// * Type:FocusSearchDirection * Description:N/A
** {{wiki:PublicMethod.gif|}} GatherTransparentRegion(Region) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //region// * Type:Region * Description:N/A
** {{wiki:PublicMethod.gif|}} GenerateLayoutParams(IAttributeSet) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:LayoutParams * Description:N/A == Parameters == * //attrs// * Type:IAttributeSet * Description:N/A
** {{wiki:PublicMethod.gif|}} GetChildAt(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:View * Description:N/A == Parameters == * //index// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} GetChildVisibleRect(View,Rect,Point) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //r// * Type:Rect * Description:N/A * //offset// * Type:Point * Description:N/A
** {{wiki:PublicMethod.gif|}} IndexOfChild(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:N/A == Parameters == * //child// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} InvalidateChild(View,Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //dirty// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} InvalidateChildInParent(Int32[],Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IViewParent * Description:N/A == Parameters == * //location// * Type:Int32[] * Description:N/A * //dirty// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} Layout(Int32,Int32,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //l// * Type:Int32 * Description:N/A * //t// * Type:Int32 * Description:N/A * //r// * Type:Int32 * Description:N/A * //b// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} NotifySubtreeAccessibilityStateChanged(View,View,ContentChangeTypes) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //source// * Type:View * Description:N/A * //changeType// * Type:ContentChangeTypes * Description:N/A
** {{wiki:PublicMethod.gif|}} OffsetDescendantRectToMyCoords(View,Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //descendant// * Type:View * Description:N/A * //rect// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} OffsetRectIntoDescendantCoords(View,Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //descendant// * Type:View * Description:N/A * //rect// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} OnInterceptHoverEvent(MotionEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnInterceptTouchEvent(MotionEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //ev// * Type:MotionEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnNestedFling(View,Single,Single,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //target// * Type:View * Description:N/A * //velocityX// * Type:Single * Description:N/A * //velocityY// * Type:Single * Description:N/A * //consumed// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} OnNestedPreFling(View,Single,Single) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //target// * Type:View * Description:N/A * //velocityX// * Type:Single * Description:N/A * //velocityY// * Type:Single * Description:N/A
** {{wiki:PublicMethod.gif|}} OnNestedPrePerformAccessibilityAction(View,Action,Bundle) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //target// * Type:View * Description:N/A * //action// * Type:Action * Description:N/A * //args// * Type:Bundle * Description:N/A
** {{wiki:PublicMethod.gif|}} OnNestedPreScroll(View,Int32,Int32,Int32[]) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //target// * Type:View * Description:N/A * //dx// * Type:Int32 * Description:N/A * //dy// * Type:Int32 * Description:N/A * //consumed// * Type:Int32[] * Description:N/A
** {{wiki:PublicMethod.gif|}} OnNestedScroll(View,Int32,Int32,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //target// * Type:View * Description:N/A * //dxConsumed// * Type:Int32 * Description:N/A * //dyConsumed// * Type:Int32 * Description:N/A * //dxUnconsumed// * Type:Int32 * Description:N/A * //dyUnconsumed// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} OnNestedScrollAccepted(View,View,ScrollAxis) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //target// * Type:View * Description:N/A * //axes// * Type:ScrollAxis * Description:N/A
** {{wiki:PublicMethod.gif|}} OnRequestSendAccessibilityEvent(View,AccessibilityEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //e// * Type:AccessibilityEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnStartNestedScroll(View,View,ScrollAxis) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //target// * Type:View * Description:N/A * //nestedScrollAxes// * Type:ScrollAxis * Description:N/A
** {{wiki:PublicMethod.gif|}} OnStopNestedScroll(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} RecomputeViewAttributes(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveAllViews() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} AddStatesFromChildren() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} AddView(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} AddView(View,LayoutParams) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //params// * Type:LayoutParams * Description:N/A
** {{wiki:PublicMethod.gif|}} AddView(View,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //index// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} AddView(View,Int32,LayoutParams) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //index// * Type:Int32 * Description:N/A * //params// * Type:LayoutParams * Description:N/A
** {{wiki:PublicMethod.gif|}} AddView(View,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //width// * Type:Int32 * Description:N/A * //height// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} BringChildToFront(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} ChildDrawableStateChanged(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} ChildHasTransientStateChanged(View,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //childHasTransientState// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} ClearChildFocus(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} ClearDisappearingChildren() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} DispatchSetActivated(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //activated// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchSetSelected(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //selected// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} EndViewTransition(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //view// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} FocusableViewAvailable(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //v// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} SetOnApplyWindowInsetsListener(IOnApplyWindowInsetsListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //listener// * Type:IOnApplyWindowInsetsListener * Description:N/A
** {{wiki:PublicMethod.gif|}} SetOnClickListener(IOnClickListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //l// * Type:IOnClickListener * Description:N/A
** {{wiki:PublicMethod.gif|}} SetOnCreateContextMenuListener(IOnCreateContextMenuListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //l// * Type:IOnCreateContextMenuListener * Description:N/A
** {{wiki:PublicMethod.gif|}} SetOnDragListener(IOnDragListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //l// * Type:IOnDragListener * Description:N/A
** {{wiki:PublicMethod.gif|}} SetOnGenericMotionListener(IOnGenericMotionListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //l// * Type:IOnGenericMotionListener * Description:N/A
** {{wiki:PublicMethod.gif|}} SetOnHoverListener(IOnHoverListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //l// * Type:IOnHoverListener * Description:N/A
** {{wiki:PublicMethod.gif|}} SetOnKeyListener(IOnKeyListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //l// * Type:IOnKeyListener * Description:N/A
** {{wiki:PublicMethod.gif|}} SetOnLongClickListener(IOnLongClickListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //l// * Type:IOnLongClickListener * Description:N/A
** {{wiki:PublicMethod.gif|}} SetOnSystemUiVisibilityChangeListener(IOnSystemUiVisibilityChangeListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //l// * Type:IOnSystemUiVisibilityChangeListener * Description:N/A
** {{wiki:PublicMethod.gif|}} SetOnTouchListener(IOnTouchListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //l// * Type:IOnTouchListener * Description:N/A
** {{wiki:PublicMethod.gif|}} SetPadding(Int32,Int32,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //left// * Type:Int32 * Description:N/A * //top// * Type:Int32 * Description:N/A * //right// * Type:Int32 * Description:N/A * //bottom// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} SetPaddingRelative(Int32,Int32,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //start// * Type:Int32 * Description:N/A * //top// * Type:Int32 * Description:N/A * //end// * Type:Int32 * Description:N/A * //bottom// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} SetScrollContainer(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //isScrollContainer// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} SetTag(Int32,Object) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //key// * Type:Int32 * Description:N/A * //tag// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} SetWillNotCacheDrawing(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //willNotCacheDrawing// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} SetWillNotDraw(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //willNotDraw// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} SetX(Single) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //x// * Type:Single * Description:N/A
** {{wiki:PublicMethod.gif|}} SetY(Single) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //y// * Type:Single * Description:N/A
** {{wiki:PublicMethod.gif|}} SetZ(Single) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //z// * Type:Single * Description:N/A
** {{wiki:PublicMethod.gif|}} ShowContextMenu() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} StartActionMode(ICallback) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ActionMode * Description:N/A == Parameters == * //callback// * Type:ICallback * Description:N/A
** {{wiki:PublicMethod.gif|}} StartAnimation(Animation) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //animation// * Type:Animation * Description:N/A
** {{wiki:PublicMethod.gif|}} StartDrag(ClipData,DragShadowBuilder,Object,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //data// * Type:ClipData * Description:N/A * //shadowBuilder// * Type:DragShadowBuilder * Description:N/A * //myLocalState// * Type:Object * Description:N/A * //flags// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} StartNestedScroll(ScrollAxis) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //axes// * Type:ScrollAxis * Description:N/A
** {{wiki:PublicMethod.gif|}} StopNestedScroll() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} UnscheduleDrawable(Drawable) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //who// * Type:Drawable * Description:N/A
** {{wiki:PublicMethod.gif|}} UnscheduleDrawable(Drawable,IRunnable) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //who// * Type:Drawable * Description:N/A * //what// * Type:IRunnable * Description:N/A
** {{wiki:PublicMethod.gif|}} WillNotCacheDrawing() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} WillNotDraw() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} PostOnAnimationDelayed(IRunnable,Int64) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //action// * Type:IRunnable * Description:N/A * //delayMillis// * Type:Int64 * Description:N/A
** {{wiki:PublicMethod.gif|}} RefreshDrawableState() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} RemoveCallbacks(IRunnable) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //action// * Type:IRunnable * Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveOnAttachStateChangeListener(IOnAttachStateChangeListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //listener// * Type:IOnAttachStateChangeListener * Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveOnLayoutChangeListener(IOnLayoutChangeListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //listener// * Type:IOnLayoutChangeListener * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestApplyInsets() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} RequestFitSystemWindows() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} RequestFocus() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} RequestFocus(FocusSearchDirection) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //direction// * Type:FocusSearchDirection * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestFocus(FocusSearchDirection,Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //direction// * Type:FocusSearchDirection * Description:N/A * //previouslyFocusedRect// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestFocusFromTouch() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} RequestLayout() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} RequestRectangleOnScreen(Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //rectangle// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestRectangleOnScreen(Rect,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //rectangle// * Type:Rect * Description:N/A * //immediate// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} RequestUnbufferedDispatch(MotionEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} RestoreHierarchyState(SparseArray) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //container// * Type:SparseArray * Description:N/A
** {{wiki:PublicMethod.gif|}} SaveHierarchyState(SparseArray) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //container// * Type:SparseArray * Description:N/A
** {{wiki:PublicMethod.gif|}} ScheduleDrawable(Drawable,IRunnable,Int64) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //who// * Type:Drawable * Description:N/A * //what// * Type:IRunnable * Description:N/A * //when// * Type:Int64 * Description:N/A
** {{wiki:PublicMethod.gif|}} ScrollBy(Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //x// * Type:Int32 * Description:N/A * //y// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} ScrollTo(Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //x// * Type:Int32 * Description:N/A * //y// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} SendAccessibilityEvent(EventTypes) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //eventType// * Type:EventTypes * Description:N/A
** {{wiki:PublicMethod.gif|}} SendAccessibilityEventUnchecked(AccessibilityEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:AccessibilityEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} SetAccessibilityDelegate(AccessibilityDelegate) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //delegate// * Type:AccessibilityDelegate * Description:N/A
** {{wiki:PublicMethod.gif|}} SetBackgroundColor(Color) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //color// * Type:Color * Description:N/A
** {{wiki:PublicMethod.gif|}} SetBackgroundDrawable(Drawable) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //background// * Type:Drawable * Description:N/A
** {{wiki:PublicMethod.gif|}} SetBackgroundResource(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //resid// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} SetCameraDistance(Single) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //distance// * Type:Single * Description:N/A
** {{wiki:PublicMethod.gif|}} SetFadingEdgeLength(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //length// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} SetFitsSystemWindows(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //fitSystemWindows// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} SetLayerPaint(Paint) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //paint// * Type:Paint * Description:N/A
** {{wiki:PublicMethod.gif|}} SetLayerType(LayerType,Paint) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //layerType// * Type:LayerType * Description:N/A * //paint// * Type:Paint * Description:N/A
** {{wiki:PublicMethod.gif|}} SetMinimumHeight(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //minHeight// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} SetMinimumWidth(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //minWidth// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} OnPopulateAccessibilityEvent(AccessibilityEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:AccessibilityEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnRtlPropertiesChanged(LayoutDirection) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //layoutDirection// * Type:LayoutDirection * Description:N/A
** {{wiki:PublicMethod.gif|}} OnScreenStateChanged(ScreenState) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //screenState// * Type:ScreenState * Description:N/A
** {{wiki:PublicMethod.gif|}} OnStartTemporaryDetach() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} OnTouchEvent(MotionEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnTrackballEvent(MotionEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnWindowFocusChanged(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //hasWindowFocus// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} OnWindowSystemUiVisibilityChanged(SystemUiFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //visible// * Type:SystemUiFlags * Description:N/A
** {{wiki:PublicMethod.gif|}} PerformAccessibilityAction(GlobalAction,Bundle) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //action// * Type:GlobalAction * Description:N/A * //arguments// * Type:Bundle * Description:N/A
** {{wiki:PublicMethod.gif|}} PerformClick() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} PerformHapticFeedback(FeedbackConstants) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //feedbackConstant// * Type:FeedbackConstants * Description:N/A
** {{wiki:PublicMethod.gif|}} PerformHapticFeedback(FeedbackConstants,FeedbackFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //feedbackConstant// * Type:FeedbackConstants * Description:N/A * //flags// * Type:FeedbackFlags * Description:N/A
** {{wiki:PublicMethod.gif|}} PerformLongClick() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} PlaySoundEffect(SoundEffects) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //soundConstant// * Type:SoundEffects * Description:N/A
** {{wiki:PublicMethod.gif|}} Post(IRunnable) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //action// * Type:IRunnable * Description:N/A
** {{wiki:PublicMethod.gif|}} PostDelayed(IRunnable,Int64) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //action// * Type:IRunnable * Description:N/A * //delayMillis// * Type:Int64 * Description:N/A
** {{wiki:PublicMethod.gif|}} PostInvalidate() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} PostInvalidate(Int32,Int32,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //left// * Type:Int32 * Description:N/A * //top// * Type:Int32 * Description:N/A * //right// * Type:Int32 * Description:N/A * //bottom// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} PostInvalidateDelayed(Int64) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //delayMilliseconds// * Type:Int64 * Description:N/A
** {{wiki:PublicMethod.gif|}} PostInvalidateDelayed(Int64,Int32,Int32,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //delayMilliseconds// * Type:Int64 * Description:N/A * //left// * Type:Int32 * Description:N/A * //top// * Type:Int32 * Description:N/A * //right// * Type:Int32 * Description:N/A * //bottom// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} PostInvalidateOnAnimation() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} PostInvalidateOnAnimation(Int32,Int32,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //left// * Type:Int32 * Description:N/A * //top// * Type:Int32 * Description:N/A * //right// * Type:Int32 * Description:N/A * //bottom// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} PostOnAnimation(IRunnable) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //action// * Type:IRunnable * Description:N/A
** {{wiki:PublicMethod.gif|}} OnApplyWindowInsets(WindowInsets) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:WindowInsets * Description:N/A == Parameters == * //insets// * Type:WindowInsets * Description:N/A
** {{wiki:PublicMethod.gif|}} OnCancelPendingInputEvents() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} OnCheckIsTextEditor() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} OnCreateInputConnection(EditorInfo) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IInputConnection * Description:N/A == Parameters == * //outAttrs// * Type:EditorInfo * Description:N/A
** {{wiki:PublicMethod.gif|}} OnDragEvent(DragEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:DragEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnFilterTouchEventForSecurity(MotionEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnFinishTemporaryDetach() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} OnGenericMotionEvent(MotionEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnHoverChanged(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //hovered// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} OnHoverEvent(MotionEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnInitializeAccessibilityEvent(AccessibilityEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:AccessibilityEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnInitializeAccessibilityNodeInfo(AccessibilityNodeInfo) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //info// * Type:AccessibilityNodeInfo * Description:N/A
** {{wiki:PublicMethod.gif|}} OnKeyDown(Keycode,KeyEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //keyCode// * Type:Keycode * Description:N/A * //e// * Type:KeyEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnKeyLongPress(Keycode,KeyEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //keyCode// * Type:Keycode * Description:N/A * //e// * Type:KeyEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnKeyMultiple(Keycode,Int32,KeyEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //keyCode// * Type:Keycode * Description:N/A * //repeatCount// * Type:Int32 * Description:N/A * //e// * Type:KeyEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnKeyPreIme(Keycode,KeyEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //keyCode// * Type:Keycode * Description:N/A * //e// * Type:KeyEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnKeyShortcut(Keycode,KeyEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //keyCode// * Type:Keycode * Description:N/A * //e// * Type:KeyEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} OnKeyUp(Keycode,KeyEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //keyCode// * Type:Keycode * Description:N/A * //e// * Type:KeyEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} FindViewsWithText(IList,String,FindViewsWith) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //outViews// * Type:IList * Description:N/A * //searched// * Type:String * Description:N/A * //flags// * Type:FindViewsWith * Description:N/A
** {{wiki:PublicMethod.gif|}} FindViewWithTag(Object) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:View * Description:N/A == Parameters == * //tag// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} InvokeFitsSystemWindows() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} FocusSearch(FocusSearchDirection) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:View * Description:N/A == Parameters == * //direction// * Type:FocusSearchDirection * Description:N/A
** {{wiki:PublicMethod.gif|}} ForceLayout() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetDrawableState() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32[] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetDrawingCache(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Bitmap * Description:N/A == Parameters == * //autoScale// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} GetDrawingRect(Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //outRect// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} GetFocusables(FocusSearchDirection) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IList * Description:N/A == Parameters == * //direction// * Type:FocusSearchDirection * Description:N/A
** {{wiki:PublicMethod.gif|}} GetFocusedRect(Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //r// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} GetGlobalVisibleRect(Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //r// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} GetGlobalVisibleRect(Rect,Point) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //r// * Type:Rect * Description:N/A * //globalOffset// * Type:Point * Description:N/A
** {{wiki:PublicMethod.gif|}} GetHitRect(Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //outRect// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} GetLocalVisibleRect(Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //r// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} GetLocationInWindow(Int32[]) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //location// * Type:Int32[] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetLocationOnScreen(Int32[]) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //location// * Type:Int32[] * Description:N/A
** {{wiki:PublicMethod.gif|}} GetTag(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object * Description:N/A == Parameters == * //key// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} GetWindowVisibleDisplayFrame(Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //outRect// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} GetX() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetY() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetZ() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Invalidate() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Invalidate(Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dirty// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} Invalidate(Int32,Int32,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //l// * Type:Int32 * Description:N/A * //t// * Type:Int32 * Description:N/A * //r// * Type:Int32 * Description:N/A * //b// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} InvalidateDrawable(Drawable) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //drawable// * Type:Drawable * Description:N/A
** {{wiki:PublicMethod.gif|}} InvalidateOutline() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} JumpDrawablesToCurrentState() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Measure(Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //widthMeasureSpec// * Type:Int32 * Description:N/A * //heightMeasureSpec// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} OffsetLeftAndRight(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //offset// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} OffsetTopAndBottom(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //offset// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchDrawableHotspotChanged(Single,Single) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //x// * Type:Single * Description:N/A * //y// * Type:Single * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchGenericMotionEvent(MotionEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchKeyEvent(KeyEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:KeyEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchKeyEventPreIme(KeyEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:KeyEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchKeyShortcutEvent(KeyEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:KeyEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchNestedFling(Single,Single,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //velocityX// * Type:Single * Description:N/A * //velocityY// * Type:Single * Description:N/A * //consumed// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchNestedPreFling(Single,Single) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //velocityX// * Type:Single * Description:N/A * //velocityY// * Type:Single * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchNestedPrePerformAccessibilityAction(Action,Bundle) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //action// * Type:Action * Description:N/A * //arguments// * Type:Bundle * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchNestedPreScroll(Int32,Int32,Int32[],Int32[]) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //dx// * Type:Int32 * Description:N/A * //dy// * Type:Int32 * Description:N/A * //consumed// * Type:Int32[] * Description:N/A * //offsetInWindow// * Type:Int32[] * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchNestedScroll(Int32,Int32,Int32,Int32,Int32[]) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //dxConsumed// * Type:Int32 * Description:N/A * //dyConsumed// * Type:Int32 * Description:N/A * //dxUnconsumed// * Type:Int32 * Description:N/A * //dyUnconsumed// * Type:Int32 * Description:N/A * //offsetInWindow// * Type:Int32[] * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchPopulateAccessibilityEvent(AccessibilityEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:AccessibilityEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchSystemUiVisibilityChanged(SystemUiFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //visibility// * Type:SystemUiFlags * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchTouchEvent(MotionEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchTrackballEvent(MotionEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchUnhandledMove(View,FocusSearchDirection) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //focused// * Type:View * Description:N/A * //direction// * Type:FocusSearchDirection * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchWindowFocusChanged(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //hasFocus// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchWindowSystemUiVisiblityChanged(SystemUiFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //visible// * Type:SystemUiFlags * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchWindowVisibilityChanged(ViewStates) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //visibility// * Type:ViewStates * Description:N/A
** {{wiki:PublicMethod.gif|}} Draw(Canvas) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //canvas// * Type:Canvas * Description:N/A
** {{wiki:PublicMethod.gif|}} DrawableHotspotChanged(Single,Single) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //x// * Type:Single * Description:N/A * //y// * Type:Single * Description:N/A
** {{wiki:PublicMethod.gif|}} FindFocus() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:View * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} FindViewById(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:View * Description:N/A == Parameters == * //id// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} FindViewsWithText(IList,ICharSequence,FindViewsWith) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //outViews// * Type:IList * Description:N/A * //searched// * Type:ICharSequence * Description:N/A * //flags// * Type:FindViewsWith * Description:N/A
** {{wiki:PublicMethod.gif|}} BringToFront() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} BuildDrawingCache() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} BuildDrawingCache(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //autoScale// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} BuildLayer() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CallOnClick() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CancelLongPress() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CancelPendingInputEvents() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CanResolveLayoutDirection() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CanResolveTextAlignment() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CanResolveTextDirection() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CanScrollHorizontally(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //direction// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} CanScrollVertically(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //direction// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} CheckInputConnectionProxy(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //view// * Type:View * Description:N/A
** {{wiki:PublicMethod.gif|}} ClearAnimation() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ClearFocus() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ComputeScroll() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ComputeSystemWindowInsets(WindowInsets,Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:WindowInsets * Description:N/A == Parameters == * //in// * Type:WindowInsets * Description:N/A * //outLocalInsets// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} CreateAccessibilityNodeInfo() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:AccessibilityNodeInfo * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CreateContextMenu(IContextMenu) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //menu// * Type:IContextMenu * Description:N/A
** {{wiki:PublicMethod.gif|}} DestroyDrawingCache() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} DispatchApplyWindowInsets(WindowInsets) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:WindowInsets * Description:N/A == Parameters == * //insets// * Type:WindowInsets * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchConfigurationChanged(Configuration) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //newConfig// * Type:Configuration * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchDisplayHint(ViewStates) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //hint// * Type:ViewStates * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchDragEvent(DragEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:DragEvent * Description:N/A
** {{wiki:PublicMethod.gif|}} AddChildrenForAccessibility(IList) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //children// * Type:IList * Description:N/A
** {{wiki:PublicMethod.gif|}} AddFocusables(IList,FocusSearchDirection) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //views// * Type:IList * Description:N/A * //direction// * Type:FocusSearchDirection * Description:N/A
** {{wiki:PublicMethod.gif|}} AddFocusables(IList,FocusSearchDirection,FocusablesFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //views// * Type:IList * Description:N/A * //direction// * Type:FocusSearchDirection * Description:N/A * //focusableMode// * Type:FocusablesFlags * Description:N/A
** {{wiki:PublicMethod.gif|}} AddOnAttachStateChangeListener(IOnAttachStateChangeListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //listener// * Type:IOnAttachStateChangeListener * Description:N/A
** {{wiki:PublicMethod.gif|}} AddOnLayoutChangeListener(IOnLayoutChangeListener) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //listener// * Type:IOnLayoutChangeListener * Description:N/A
** {{wiki:PublicMethod.gif|}} AddTouchables(IList) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //views// * Type:IList * Description:N/A
** {{wiki:PublicMethod.gif|}} Animate() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ViewPropertyAnimator * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} AnnounceForAccessibility(ICharSequence) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //text// * Type:ICharSequence * Description:N/A
** {{wiki:PublicMethod.gif|}} AnnounceForAccessibility(String) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //text// * Type:String * Description:N/A
** {{wiki:PublicMethod.gif|}} FindViewById(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:T * Description:N/A == Parameters == * //id// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} Post(Action) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //action// * Type:Action * Description:N/A
** {{wiki:PublicMethod.gif|}} PostDelayed(Action,Int64) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //action// * Type:Action * Description:N/A * //delayMillis// * Type:Int64 * Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveCallbacks(Action) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //action// * Type:Action * Description:N/A
** {{wiki:PublicMethod.gif|}} ScheduleDrawable(Drawable,Action,Int64) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //who// * Type:Drawable * Description:N/A * //what// * Type:Action * Description:N/A * //when// * Type:Int64 * Description:N/A
** {{wiki:PublicMethod.gif|}} UnscheduleDrawable(Drawable,Action) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //who// * Type:Drawable * Description:N/A * //what// * Type:Action * Description:N/A
** {{wiki:PublicMethod.gif|}} DispatchSystemUiVisibilityChanged(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //visibility// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} Wait() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Wait(Int64) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //millis// * Type:Int64 * Description:N/A
** {{wiki:PublicMethod.gif|}} Wait(Int64,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //millis// * Type:Int64 * Description:N/A * //nanos// * Type:Int32 * Description:N/A
** {{wiki:PublicMethod.gif|}} Dispose() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ToArray() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:T[] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Equals(Object) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //o// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} GetHashCode() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Notify() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} NotifyAll() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ToString() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Equals(Object) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //obj// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} GetType() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Type * Description:N/A == Parameters ==
==== Protected Methods ==== ** {{wiki:ProtectedMethod.gif|}} Dispose(Boolean) ** * //Releases unmanaged and - optionally - managed resources.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //disposing// * Type:Boolean * Description:true to release both managed and unmanaged resources; false to release only unmanaged resources.
** {{wiki:ProtectedMethod.gif|}} OnLongPress(MotionEvent) ** * //Called when [long press].// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:Event argument for LongPress event.
** {{wiki:ProtectedMethod.gif|}} OnSingleTap(MotionEvent) ** * //Called when [single tap].// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:Event argument for SingleTap event.
** {{wiki:ProtectedMethod.gif|}} OnDoubleTap(MotionEvent) ** * //Called when [double tap].// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:Event argument for DoubleTap event.
** {{wiki:ProtectedMethod.gif|}} OnTouchMove(MotionEvent) ** * //Called when [touch move].// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:Event argument for TouchMove event.
** {{wiki:ProtectedMethod.gif|}} OnTouchUp(MotionEvent) ** * //Called when [touch up].// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:Event argument for TouchUp event.
** {{wiki:ProtectedMethod.gif|}} OnTouchDown(MotionEvent) ** * //Called when [touch down].// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:Event argument for TouchDown event.
** {{wiki:ProtectedMethod.gif|}} OnCurrentExtentChanged(CurrentExtentChangedMapViewEventArgs) ** * //Occurs when map's current extent is changed.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.AndroidEdition.CurrentExtentChangedMapViewEventArgs|CurrentExtentChangedMapViewEventArgs]] * Description:Event argument for CurrentExtentChanged event.
** {{wiki:ProtectedMethod.gif|}} OnCurrentExtentChanging(CurrentExtentChangingMapViewEventArgs) ** * //Occurs when map's current extent is changing.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.AndroidEdition.CurrentExtentChangingMapViewEventArgs|CurrentExtentChangingMapViewEventArgs]] * Description:Event argument for CurrentExtentChanging event.
** {{wiki:ProtectedMethod.gif|}} OnCurrentScaleChanging(CurrentScaleChangingMapViewEventArgs) ** * //Occurs when map's current scale is changing.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.AndroidEdition.CurrentScaleChangingMapViewEventArgs|CurrentScaleChangingMapViewEventArgs]] * Description:Event argument for CurrentScaleChanging event.
** {{wiki:ProtectedMethod.gif|}} OnCurrentScaleChanged(CurrentScaleChangedMapViewEventArgs) ** * //Occurs when map's current scale is changed.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.AndroidEdition.CurrentScaleChangedMapViewEventArgs|CurrentScaleChangedMapViewEventArgs]] * Description:Event argument for CurrentScaleChanged event.
** {{wiki:ProtectedMethod.gif|}} ZoomToCore(RectangleShape) ** * //This protected virtual method is the Core method of ZoomTo API.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //extent// * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] * Description:An extent to locates the map.
** {{wiki:ProtectedMethod.gif|}} ZoomInByAnchorPointCore(ScreenPointF) ** * //This protected virtual method is the Core method of ZoomInByAnchorPoint API.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //touchPosition// * Type:[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]] * Description:A position to zoom in map.
** {{wiki:ProtectedMethod.gif|}} DispatchDraw(Canvas) ** * //Called by draw to draw the child views.// == Remarks == * //Called by draw to draw the child views. This may be overridden by derived classes to gain control just before its children are drawn (but after its own view has been drawn).[Android Documentation]// == Return Value == * Type:Void * Description:N/A == Parameters == * //canvas// * Type:Canvas * Description:the canvas on which to draw the view
** {{wiki:ProtectedMethod.gif|}} DrawCore(MapArguments,OverlayRefreshType) ** * //Draws the map by the provided extent.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //mapArguments// * Type:[[ThinkGeo.MapSuite.AndroidEdition.MapArguments|MapArguments]] * Description:This parameter maintains current map information for calculating mechanism. * //refreshType// * Type:[[ThinkGeo.MapSuite.AndroidEdition.OverlayRefreshType|OverlayRefreshType]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ZoomToScaleCore(Double) ** * //Zooms the map to a provided scale. This protected virtual method is the Core method of ZoomToScale API.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //targetScale// * Type:Double * Description:A target scale to zoom the map.
** {{wiki:ProtectedMethod.gif|}} OnSizeChanged(Int32,Int32,Int32,Int32) ** * //This is called during layout when the size of this view has changed.// == Remarks == * //This is called during layout when the size of this view has changed. If you were just added to the view hierarchy, you're called with the old values of 0.[Android Documentation]// == Return Value == * Type:Void * Description:N/A == Parameters == * //w// * Type:Int32 * Description:Current width of this view. * //h// * Type:Int32 * Description:Current height of this view. * //oldw// * Type:Int32 * Description:Old width of this view. * //oldh// * Type:Int32 * Description:Old height of this view.
** {{wiki:ProtectedMethod.gif|}} PanCore(PanDirection,Int32) ** * //This protected virtual method is the Core method of Pan API.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //direction// * Type:[[ThinkGeo.MapSuite.Core.PanDirection|PanDirection]] * Description:The direction to be paned. * //percentage// * Type:Int32 * Description:The percentage to be paned.
** {{wiki:ProtectedMethod.gif|}} RefreshCore() ** * //This protected virtual method is the Core method of Refresh API.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} ZoomInCore(Int32) ** * //This protected virtual method is the Core method of ZoomIn API.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Int32 * Description:A scale to zoom the map in.
** {{wiki:ProtectedMethod.gif|}} ZoomOutCore(Int32) ** * //This protected virtual method is the Core method of ZoomOut API.// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Int32 * Description:A scale to zoom the map out.
** {{wiki:ProtectedMethod.gif|}} OnLayout(Boolean,Int32,Int32,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //changed// * Type:Boolean * Description:N/A * //l// * Type:Int32 * Description:N/A * //t// * Type:Int32 * Description:N/A * //r// * Type:Int32 * Description:N/A * //b// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RemoveDetachedView(View,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //animate// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ResetResolvedLayoutDirection() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} ResetResolvedTextDirection() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} SetChildrenDrawingCacheEnabled(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //enabled// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetStaticTransformationsEnabled(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //enabled// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GenerateDefaultLayoutParams() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:LayoutParams * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} GenerateLayoutParams(LayoutParams) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:LayoutParams * Description:N/A == Parameters == * //p// * Type:LayoutParams * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetChildDrawingOrder(Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:N/A == Parameters == * //childCount// * Type:Int32 * Description:N/A * //i// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetChildStaticTransformation(View,Transformation) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //t// * Type:Transformation * Description:N/A
** {{wiki:ProtectedMethod.gif|}} MeasureChild(View,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //parentWidthMeasureSpec// * Type:Int32 * Description:N/A * //parentHeightMeasureSpec// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} MeasureChildren(Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //widthMeasureSpec// * Type:Int32 * Description:N/A * //heightMeasureSpec// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} MeasureChildWithMargins(View,Int32,Int32,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //parentWidthMeasureSpec// * Type:Int32 * Description:N/A * //widthUsed// * Type:Int32 * Description:N/A * //parentHeightMeasureSpec// * Type:Int32 * Description:N/A * //heightUsed// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnRequestFocusInDescendants(Int32,Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //direction// * Type:Int32 * Description:N/A * //previouslyFocusedRect// * Type:Rect * Description:N/A
** {{wiki:ProtectedMethod.gif|}} AddViewInLayout(View,Int32,LayoutParams) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //index// * Type:Int32 * Description:N/A * //params// * Type:LayoutParams * Description:N/A
** {{wiki:ProtectedMethod.gif|}} AddViewInLayout(View,Int32,LayoutParams,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //index// * Type:Int32 * Description:N/A * //params// * Type:LayoutParams * Description:N/A * //preventRequestLayout// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} AttachLayoutAnimationParameters(View,LayoutParams,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //params// * Type:LayoutParams * Description:N/A * //index// * Type:Int32 * Description:N/A * //count// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} AttachViewToParent(View,Int32,LayoutParams) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A * //index// * Type:Int32 * Description:N/A * //params// * Type:LayoutParams * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CanAnimate() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} CheckLayoutParams(LayoutParams) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //p// * Type:LayoutParams * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CleanupLayoutState(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A
** {{wiki:ProtectedMethod.gif|}} Debug(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //depth// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DetachAllViewsFromParent() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} DetachViewFromParent(View) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:View * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DetachViewFromParent(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //index// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DetachViewsFromParent(Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //start// * Type:Int32 * Description:N/A * //count// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DispatchFreezeSelfOnly(SparseArray) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //container// * Type:SparseArray * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DispatchThawSelfOnly(SparseArray) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //container// * Type:SparseArray * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DrawChild(Canvas,View,Int64) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //canvas// * Type:Canvas * Description:N/A * //child// * Type:View * Description:N/A * //drawingTime// * Type:Int64 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} VerifyDrawable(Drawable) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //who// * Type:Drawable * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetMeasuredDimension(Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //measuredWidth// * Type:Int32 * Description:N/A * //measuredHeight// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnOverScrolled(Int32,Int32,Boolean,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //scrollX// * Type:Int32 * Description:N/A * //scrollY// * Type:Int32 * Description:N/A * //clampedX// * Type:Boolean * Description:N/A * //clampedY// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnRestoreInstanceState(IParcelable) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //state// * Type:IParcelable * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnSaveInstanceState() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IParcelable * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnScrollChanged(Int32,Int32,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //l// * Type:Int32 * Description:N/A * //t// * Type:Int32 * Description:N/A * //oldl// * Type:Int32 * Description:N/A * //oldt// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnSetAlpha(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //alpha// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnVisibilityChanged(View,ViewStates) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //changedView// * Type:View * Description:N/A * //visibility// * Type:ViewStates * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnWindowVisibilityChanged(ViewStates) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //visibility// * Type:ViewStates * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OverScrollBy(Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //deltaX// * Type:Int32 * Description:N/A * //deltaY// * Type:Int32 * Description:N/A * //scrollX// * Type:Int32 * Description:N/A * //scrollY// * Type:Int32 * Description:N/A * //scrollRangeX// * Type:Int32 * Description:N/A * //scrollRangeY// * Type:Int32 * Description:N/A * //maxOverScrollX// * Type:Int32 * Description:N/A * //maxOverScrollY// * Type:Int32 * Description:N/A * //isTouchEvent// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnAnimationEnd() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnAnimationStart() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnAttachedToWindow() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnConfigurationChanged(Configuration) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //newConfig// * Type:Configuration * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnCreateContextMenu(IContextMenu) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //menu// * Type:IContextMenu * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnCreateDrawableState(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32[] * Description:N/A == Parameters == * //extraSpace// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnDetachedFromWindow() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnDisplayHint(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //hint// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnDraw(Canvas) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //canvas// * Type:Canvas * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnDrawScrollBars(Canvas) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //canvas// * Type:Canvas * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnFinishInflate() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnFocusChanged(Boolean,FocusSearchDirection,Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //gainFocus// * Type:Boolean * Description:N/A * //direction// * Type:FocusSearchDirection * Description:N/A * //previouslyFocusedRect// * Type:Rect * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnLayout(Boolean,Int32,Int32,Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //changed// * Type:Boolean * Description:N/A * //left// * Type:Int32 * Description:N/A * //top// * Type:Int32 * Description:N/A * //right// * Type:Int32 * Description:N/A * //bottom// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnMeasure(Int32,Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //widthMeasureSpec// * Type:Int32 * Description:N/A * //heightMeasureSpec// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} FitSystemWindows(Rect) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //insets// * Type:Rect * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InitializeFadingEdge(TypedArray) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //a// * Type:TypedArray * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InitializeScrollbars(TypedArray) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //a// * Type:TypedArray * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DispatchGenericFocusedEvent(MotionEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DispatchGenericPointerEvent(MotionEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DispatchHoverEvent(MotionEvent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //e// * Type:MotionEvent * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DispatchRestoreInstanceState(SparseArray) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //container// * Type:SparseArray * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DispatchSaveInstanceState(SparseArray) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //container// * Type:SparseArray * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DispatchSetActivated(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //activated// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DispatchSetPressed(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //pressed// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DispatchSetSelected(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //selected// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DispatchVisibilityChanged(View,ViewStates) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //changedView// * Type:View * Description:N/A * //visibility// * Type:ViewStates * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DrawableStateChanged() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} AwakenScrollBars(Int32,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //startDelay// * Type:Int32 * Description:N/A * //invalidate// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ComputeHorizontalScrollExtent() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} ComputeHorizontalScrollOffset() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} ComputeHorizontalScrollRange() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} ComputeVerticalScrollExtent() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} ComputeVerticalScrollOffset() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} ComputeVerticalScrollRange() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} AwakenScrollBars() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} AwakenScrollBars(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //startDelay// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} Finalize() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} SetHandleOnDeserialized(StreamingContext) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //context// * Type:StreamingContext * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetHandle(IntPtr,JniHandleOwnership) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //value// * Type:IntPtr * Description:N/A * //transfer// * Type:JniHandleOwnership * Description:N/A
** {{wiki:ProtectedMethod.gif|}} Clone() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} JavaFinalize() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object * Description:N/A == Parameters ==
==== Public Properties ==== ** {{wiki:PublicProperty.gif|}} CurrentExtent ** * //Gets or sets the current extent of the MapControl.// == Remarks == * //The current extent stands for the extent of current position, this is very important metrics to caculate the scale.// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] ** {{wiki:PublicProperty.gif|}} CurrentScale ** * //Gets the current scale.// == Remarks == * //N/A// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} EditOverlay ** * //Gets or sets the edit overlay in the MapControl.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.AndroidEdition.EditInteractiveOverlay|EditInteractiveOverlay]] ** {{wiki:PublicProperty.gif|}} ExtentOverlay ** * //Gets or sets the extent overlay in the MapControl.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.AndroidEdition.ExtentInteractiveOverlay|ExtentInteractiveOverlay]] ** {{wiki:PublicProperty.gif|}} InteractiveOverlays ** * //This property gets the collection of InteractiveOverlays in the MapControl.// == Remarks == * //This property is used when you want to change the default behavior of the InteractiveOverlay or add your own customized InteractiveOverlay.// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.GeoCollection[[ThinkGeo.MapSuite.AndroidEdition.InteractiveOverlay, AndroidEdition, Version=9.0.0.0, Culture=neutral, PublicKeyToken=null]]|GeoCollection]] ** {{wiki:PublicProperty.gif|}} MapTools ** * //Gets a object for simply using MapTools.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.AndroidEdition.MapTools|MapTools]] ** {{wiki:PublicProperty.gif|}} MapUnit ** * //Gets or sets the map unit used by the MapControl.// == Remarks == * //The MapUnit reflects the data unit.// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.GeographyUnit|GeographyUnit]] ** {{wiki:PublicProperty.gif|}} Overlays ** * //This property gets the collection of Overlays in the MapControl.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.GeoCollection[[ThinkGeo.MapSuite.AndroidEdition.Overlay, AndroidEdition, Version=9.0.0.0, Culture=neutral, PublicKeyToken=null]]|GeoCollection]] ** {{wiki:PublicProperty.gif|}} AdornmentOverlay ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.AndroidEdition.AdornmentOverlay|AdornmentOverlay]] ** {{wiki:PublicProperty.gif|}} TrackOverlay ** * //Gets or sets the track overlay in the MapControl.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.AndroidEdition.TrackInteractiveOverlay|TrackInteractiveOverlay]] ** {{wiki:PublicProperty.gif|}} MaximumScale ** * //This property gets and sets a maximum scale when navigating the map. When you keep zooming out, and the target scale is bigger than the maximum scale, the zooming operation will be stopped.// == Remarks == * //N/A// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} MinimumScale ** * //This property gets and sets a minimum scale when navigating the map. When you keep zooming in, and the target scale is smaller than the minimum scale, the zooming operation will be stopped.// == Remarks == * //N/A// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} ZoomLevelSet ** * //This property gets or sets the ZoomLevelSet used for the MapView control.// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.ZoomLevelSet|ZoomLevelSet]] ** {{wiki:PublicProperty.gif|}} Gravity ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:GravityFlags ** {{wiki:PublicProperty.gif|}} AlwaysDrawnWithCacheEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} AnimationCacheEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} ChildCount ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} ClipChildren ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} ClipToPadding ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} DescendantFocusability ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DescendantFocusability ** {{wiki:PublicProperty.gif|}} FocusedChild ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:View ** {{wiki:PublicProperty.gif|}} LayoutAnimation ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:LayoutAnimationController ** {{wiki:PublicProperty.gif|}} LayoutAnimationListener ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IAnimationListener ** {{wiki:PublicProperty.gif|}} LayoutMode ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ViewLayoutMode ** {{wiki:PublicProperty.gif|}} LayoutTransition ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:LayoutTransition ** {{wiki:PublicProperty.gif|}} MotionEventSplittingEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} NestedScrollAxes ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ScrollAxis ** {{wiki:PublicProperty.gif|}} PersistentDrawingCache ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:PersistentDrawingCaches ** {{wiki:PublicProperty.gif|}} TouchscreenBlocksFocus ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} TransitionGroup ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} AccessibilityLiveRegion ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:AccessibilityLiveRegion ** {{wiki:PublicProperty.gif|}} AccessibilityNodeProvider ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:AccessibilityNodeProvider ** {{wiki:PublicProperty.gif|}} AccessibilityTraversalAfter ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} AccessibilityTraversalBefore ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} Activated ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Alpha ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} Animation ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Animation ** {{wiki:PublicProperty.gif|}} ApplicationWindowToken ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IBinder ** {{wiki:PublicProperty.gif|}} Background ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Drawable ** {{wiki:PublicProperty.gif|}} BackgroundTintList ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ColorStateList ** {{wiki:PublicProperty.gif|}} BackgroundTintMode ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Mode ** {{wiki:PublicProperty.gif|}} Baseline ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} Bottom ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} CameraDistance ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} Clickable ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} ClipBounds ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Rect ** {{wiki:PublicProperty.gif|}} ClipToOutline ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} ContentDescriptionFormatted ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ICharSequence ** {{wiki:PublicProperty.gif|}} ContentDescription ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} Context ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Context ** {{wiki:PublicProperty.gif|}} Display ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Display ** {{wiki:PublicProperty.gif|}} DrawingCache ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Bitmap ** {{wiki:PublicProperty.gif|}} DrawingCacheBackgroundColor ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Color ** {{wiki:PublicProperty.gif|}} DrawingCacheEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} DrawingCacheQuality ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DrawingCacheQuality ** {{wiki:PublicProperty.gif|}} DrawingTime ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int64 ** {{wiki:PublicProperty.gif|}} DuplicateParentStateEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Elevation ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} Enabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} FilterTouchesWhenObscured ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} FitsSystemWindows ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Focusable ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} FocusableInTouchMode ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Handler ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Handler ** {{wiki:PublicProperty.gif|}} HapticFeedbackEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} HasFocus ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} HasFocusable ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} HasNestedScrollingParent ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} HasOnClickListeners ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} HasOverlappingRendering ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} HasTransientState ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} HasWindowFocus ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Height ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} HorizontalFadingEdgeEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} HorizontalFadingEdgeLength ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} HorizontalScrollBarEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Hovered ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Id ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} ImportantForAccessibility ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ImportantForAccessibility ** {{wiki:PublicProperty.gif|}} IsAccessibilityFocused ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsAttachedToWindow ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsDirty ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsFocused ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsHardwareAccelerated ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsImportantForAccessibility ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsInEditMode ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsInLayout ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsInTouchMode ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsLaidOut ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsLayoutDirectionResolved ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsLayoutRequested ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsOpaque ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsPaddingRelative ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsScrollContainer ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsShown ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsTextAlignmentResolved ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsTextDirectionResolved ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} KeepScreenOn ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} KeyDispatcherState ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DispatcherState ** {{wiki:PublicProperty.gif|}} LabelFor ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} LayerType ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:LayerType ** {{wiki:PublicProperty.gif|}} LayoutDirection ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:LayoutDirection ** {{wiki:PublicProperty.gif|}} LayoutParameters ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:LayoutParams ** {{wiki:PublicProperty.gif|}} Left ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} LongClickable ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Matrix ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Matrix ** {{wiki:PublicProperty.gif|}} MeasuredHeight ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} MeasuredHeightAndState ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} MeasuredState ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} MeasuredWidth ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} MeasuredWidthAndState ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} MinimumHeight ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} MinimumWidth ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} NestedScrollingEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} NextFocusDownId ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} NextFocusForwardId ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} NextFocusLeftId ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} NextFocusRightId ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} NextFocusUpId ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} OnFocusChangeListener ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IOnFocusChangeListener ** {{wiki:PublicProperty.gif|}} OutlineProvider ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ViewOutlineProvider ** {{wiki:PublicProperty.gif|}} OverScrollMode ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:OverScrollMode ** {{wiki:PublicProperty.gif|}} Overlay ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ViewOverlay ** {{wiki:PublicProperty.gif|}} PaddingBottom ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} PaddingEnd ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} PaddingLeft ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} PaddingRight ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} PaddingStart ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} PaddingTop ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} Parent ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IViewParent ** {{wiki:PublicProperty.gif|}} ParentForAccessibility ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IViewParent ** {{wiki:PublicProperty.gif|}} PivotX ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} PivotY ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} Pressed ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Resources ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Resources ** {{wiki:PublicProperty.gif|}} Right ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} RootView ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:View ** {{wiki:PublicProperty.gif|}} Rotation ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} RotationX ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} RotationY ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} SaveEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} SaveFromParentEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} ScaleX ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} ScaleY ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} ScrollBarDefaultDelayBeforeFade ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} ScrollBarFadeDuration ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} ScrollBarSize ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} ScrollBarStyle ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ScrollbarStyles ** {{wiki:PublicProperty.gif|}} ScrollX ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} ScrollY ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} ScrollbarFadingEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Selected ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} SolidColor ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} SoundEffectsEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} StateListAnimator ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:StateListAnimator ** {{wiki:PublicProperty.gif|}} SystemUiVisibility ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:StatusBarVisibility ** {{wiki:PublicProperty.gif|}} Tag ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object ** {{wiki:PublicProperty.gif|}} TextAlignment ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:TextAlignment ** {{wiki:PublicProperty.gif|}} TextDirection ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:TextDirection ** {{wiki:PublicProperty.gif|}} Top ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} TouchDelegate ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:TouchDelegate ** {{wiki:PublicProperty.gif|}} Touchables ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IList ** {{wiki:PublicProperty.gif|}} TransitionName ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} TranslationX ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} TranslationY ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} TranslationZ ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} VerticalFadingEdgeEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} VerticalFadingEdgeLength ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} VerticalScrollBarEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} VerticalScrollbarPosition ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ScrollbarPosition ** {{wiki:PublicProperty.gif|}} VerticalScrollbarWidth ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} ViewTreeObserver ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ViewTreeObserver ** {{wiki:PublicProperty.gif|}} Visibility ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ViewStates ** {{wiki:PublicProperty.gif|}} Width ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} WindowId ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:WindowId ** {{wiki:PublicProperty.gif|}} WindowSystemUiVisibility ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:SystemUiFlags ** {{wiki:PublicProperty.gif|}} WindowToken ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IBinder ** {{wiki:PublicProperty.gif|}} WindowVisibility ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ViewStates ** {{wiki:PublicProperty.gif|}} ApplyWindowInsets ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ApplyWindowInsetsHandler ** {{wiki:PublicProperty.gif|}} Handle ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IntPtr ** {{wiki:PublicProperty.gif|}} Class ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Class ==== Protected Properties ==== ** {{wiki:ProtectedProperty.gif|}} whQ= ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.AndroidEdition.MapLayout|MapLayout]] ** {{wiki:ProtectedProperty.gif|}} ThresholdClass ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IntPtr ** {{wiki:ProtectedProperty.gif|}} ThresholdType ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Type ** {{wiki:ProtectedProperty.gif|}} ChildrenDrawingOrderEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} ChildrenDrawnWithCacheEnabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} BottomFadingEdgeStrength ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:ProtectedProperty.gif|}} BottomPaddingOffset ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:ProtectedProperty.gif|}} ContextMenuInfo ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IContextMenuContextMenuInfo ** {{wiki:ProtectedProperty.gif|}} HorizontalScrollbarHeight ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:ProtectedProperty.gif|}} IsPaddingOffsetRequired ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} LeftFadingEdgeStrength ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:ProtectedProperty.gif|}} LeftPaddingOffset ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:ProtectedProperty.gif|}} RightFadingEdgeStrength ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:ProtectedProperty.gif|}} RightPaddingOffset ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:ProtectedProperty.gif|}} SuggestedMinimumHeight ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:ProtectedProperty.gif|}} SuggestedMinimumWidth ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:ProtectedProperty.gif|}} TopFadingEdgeStrength ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:ProtectedProperty.gif|}} TopPaddingOffset ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:ProtectedProperty.gif|}} WindowAttachCount ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ==== Public Events ==== ** {{wiki:PublicEvent.gif|}} MapLongPress ** * //Occurs when [map long press].// == Remarks == * //N/A// Event Arguments:MotionEvent ** {{wiki:PublicEvent.gif|}} MapSingleTap ** * //Occurs when [map single tap].// == Remarks == * //N/A// Event Arguments:MotionEvent ** {{wiki:PublicEvent.gif|}} MapDoubleTap ** * //Occurs when [map double tap].// == Remarks == * //N/A// Event Arguments:MotionEvent ** {{wiki:PublicEvent.gif|}} MapTouchMove ** * //Occurs when [map touch move].// == Remarks == * //N/A// Event Arguments:MotionEvent ** {{wiki:PublicEvent.gif|}} MapTouchUp ** * //Occurs when [map touch up].// == Remarks == * //N/A// Event Arguments:MotionEvent ** {{wiki:PublicEvent.gif|}} MapTouchDown ** * //Occurs when [map touch down].// == Remarks == * //N/A// Event Arguments:MotionEvent ** {{wiki:PublicEvent.gif|}} CurrentExtentChanging ** * //Occurs before map's extent is changing.// == Remarks == * //N/A// Event Arguments:[[ThinkGeo.MapSuite.AndroidEdition.CurrentExtentChangingMapViewEventArgs|CurrentExtentChangingMapViewEventArgs]] ** {{wiki:PublicEvent.gif|}} CurrentExtentChanged ** * //Occurs after map's extent is changed.// == Remarks == * //N/A// Event Arguments:[[ThinkGeo.MapSuite.AndroidEdition.CurrentExtentChangedMapViewEventArgs|CurrentExtentChangedMapViewEventArgs]] ** {{wiki:PublicEvent.gif|}} CurrentScaleChanging ** * //Occurs before map's current scale is changing.// == Remarks == * //N/A// Event Arguments:[[ThinkGeo.MapSuite.AndroidEdition.CurrentScaleChangingMapViewEventArgs|CurrentScaleChangingMapViewEventArgs]] ** {{wiki:PublicEvent.gif|}} CurrentScaleChanged ** * //Occurs after map's current scale is changed.// == Remarks == * //N/A// Event Arguments:[[ThinkGeo.MapSuite.AndroidEdition.CurrentScaleChangedMapViewEventArgs|CurrentScaleChangedMapViewEventArgs]] ** {{wiki:PublicEvent.gif|}} ChildViewAdded ** * //N/A// == Remarks == * //N/A// Event Arguments:ChildViewAddedEventArgs ** {{wiki:PublicEvent.gif|}} ChildViewRemoved ** * //N/A// == Remarks == * //N/A// Event Arguments:ChildViewRemovedEventArgs ** {{wiki:PublicEvent.gif|}} AnimationEnd ** * //N/A// == Remarks == * //N/A// Event Arguments:AnimationEndEventArgs ** {{wiki:PublicEvent.gif|}} AnimationRepeat ** * //N/A// == Remarks == * //N/A// Event Arguments:AnimationRepeatEventArgs ** {{wiki:PublicEvent.gif|}} AnimationStart ** * //N/A// == Remarks == * //N/A// Event Arguments:AnimationStartEventArgs ** {{wiki:PublicEvent.gif|}} ViewAttachedToWindow ** * //N/A// == Remarks == * //N/A// Event Arguments:ViewAttachedToWindowEventArgs ** {{wiki:PublicEvent.gif|}} ViewDetachedFromWindow ** * //N/A// == Remarks == * //N/A// Event Arguments:ViewDetachedFromWindowEventArgs ** {{wiki:PublicEvent.gif|}} LayoutChange ** * //N/A// == Remarks == * //N/A// Event Arguments:LayoutChangeEventArgs ** {{wiki:PublicEvent.gif|}} Click ** * //N/A// == Remarks == * //N/A// Event Arguments: ** {{wiki:PublicEvent.gif|}} ContextMenuCreated ** * //N/A// == Remarks == * //N/A// Event Arguments:CreateContextMenuEventArgs ** {{wiki:PublicEvent.gif|}} Drag ** * //N/A// == Remarks == * //N/A// Event Arguments:DragEventArgs ** {{wiki:PublicEvent.gif|}} GenericMotion ** * //N/A// == Remarks == * //N/A// Event Arguments:GenericMotionEventArgs ** {{wiki:PublicEvent.gif|}} Hover ** * //N/A// == Remarks == * //N/A// Event Arguments:HoverEventArgs ** {{wiki:PublicEvent.gif|}} KeyPress ** * //N/A// == Remarks == * //N/A// Event Arguments:KeyEventArgs ** {{wiki:PublicEvent.gif|}} LongClick ** * //N/A// == Remarks == * //N/A// Event Arguments:LongClickEventArgs ** {{wiki:PublicEvent.gif|}} SystemUiVisibilityChange ** * //N/A// == Remarks == * //N/A// Event Arguments:SystemUiVisibilityChangeEventArgs ** {{wiki:PublicEvent.gif|}} Touch ** * //N/A// == Remarks == * //N/A// Event Arguments:TouchEventArgs ** {{wiki:PublicEvent.gif|}} FocusChange ** * //N/A// == Remarks == * //N/A// Event Arguments:FocusChangeEventArgs