|
| UIScrollView () |
| Initializes a new instance of the T:UIKit.UIScrollView class. More...
|
|
| UIScrollView (CGRect rect) |
| Initializes a new instance of the T:UIKit.UIScrollView class. More...
|
|
| UIScrollView (Context context) |
| Initializes a new instance of the T:UIKit.UIScrollView class. More...
|
|
| UIScrollView (Context context, CGRect rect) |
| Initializes a new instance of the T:UIKit.UIScrollView class. More...
|
|
| UIScrollView (Context context, IAttributeSet attr) |
| Initializes a new instance of the T:UIKit.UIScrollView class. More...
|
|
| UIScrollView (IntPtr javaReference, JniHandleOwnership transfer) |
| Initializes a new instance of the T:UIKit.UIScrollView class. More...
|
|
| UIScrollView (Context context, IAttributeSet attr, int defStyle) |
| Initializes a new instance of the T:UIKit.UIScrollView class. More...
|
|
void | Redraw () |
|
override void | TouchesBegan (NSSet touches, UIEvent evt) |
| Sent when one or more fingers touches the screen. More...
|
|
override void | TouchesMoved (NSSet touches, UIEvent evt) |
| Sent when the ACTile is being dragged More...
|
|
override void | TouchesEnded (NSSet touches, UIEvent evt) |
| Send when one or more fingers are lifted from the screen. More...
|
|
override void | AddSubview (UIView view) |
| Adds the subview. More...
|
|
override void | LayoutSubviews () |
| Layouts the subviews. More...
|
|
delegate void | UIScrolledDelegate (UIScrollView scrollview) |
| Occurs when the scroll view is scrolled. More...
|
|
| UIView () |
| Initializes a new instance of the T:UIKit.UIView class. More...
|
|
| UIView (CGRect rect) |
| Initializes a new instance of the T:UIKit.UIView class. More...
|
|
| UIView (Context context) |
| Initializes a new instance of the T:UIKit.UIView class. More...
|
|
| UIView (Context context, IAttributeSet attr) |
| Initializes a new instance of the T:UIKit.UIView class. More...
|
|
| UIView (IntPtr javaReference, JniHandleOwnership transfer) |
| Initializes a new instance of the T:UIKit.UIView class. More...
|
|
| UIView (Context context, IAttributeSet attr, int defStyle) |
| Initializes a new instance of the T:UIKit.UIView class. More...
|
|
void | SetNeedsDisplay () |
| Sets the needs display flag. More...
|
|
void | SetNeedsLayout () |
| Sets the needs layout. More...
|
|
virtual void | Draw (CGRect rect) |
| Draw the specified rect. More...
|
|
void | InvokeOnMainThread (Action action) |
| Invokes the given action on the main UI thread. More...
|
|
override bool | OnTouchEvent (MotionEvent e) |
| Handle the touch event. More...
|
|
|
CGSize | ContentSize [get, set] |
| Gets or sets the size of the content. More...
|
|
CGPoint | ContentOffset [get, set] |
| Gets or sets the content offset. More...
|
|
bool | Bounces [get, set] |
| Gets or sets a value indicating whether this T:UIKit.UIScrollView is bounces. More...
|
|
bool | AlwaysBounceVertical = false [get, set] |
| Gets or sets a value indicating whether this T:UIKit.UIScrollView always bounce vertical. More...
|
|
bool | AlwaysBounceHorizontal = false [get, set] |
| Gets or sets a value indicating whether this T:UIKit.UIScrollView always bounce horizontal. More...
|
|
CGRect | Frame [get, set] |
| Gets or sets the frame. More...
|
|
CGRect | Bounds [get, set] |
| Gets or sets the bounds. More...
|
|
Canvas | DrawCanvas [get, set] |
| Gets or sets the draw canvas. More...
|
|
ACColor | BackgroundColor = null [get, set] |
| Gets or sets the color of the background. More...
|
|
bool | UserInteractionEnabled [get, set] |
| Gets or sets a value indicating whether this T:UIKit.UIView user interaction enabled. More...
|
|
bool | MultipleTouchEnabled = false [get, set] |
| Gets or sets a value indicating whether this T:UIKit.UIView multiple touch enabled. More...
|
|
CGPoint | LastTouchPoint = false [get, set] |
| Gets or sets the last touch point. More...
|
|
bool | ClipsToBounds = new CGPoint(0, 0) [get, set] |
| Gets or sets a value indicating whether this T:UIKit.UIView clips to bounds. More...
|
|
bool | ExclusiveTouch [get, set] |
| Gets or sets a value indicating whether this T:UIKit.UIView exclusive touch. More...
|
|
bool | CacheViewDrawing = true [get, set] |
| Gets or sets a value indicating whether this T:UIKit.UIView cache view drawing to improve redraw performance. More...
|
|
List< UIView > | Subviews = true [get] |
| Gets the subviews. More...
|
|
Simulates the iOS UIScrollView
to ease porting UI code from iOS to Android. NOTE: Only a small percentage of UIScrollView
has been ported to support the Action Components.