Returns the views parent. The returned view can be uninitialized (if there is no parent).
RemoveViewFromParent
Removes the view from its parent (same as B4A View.RemoveView method).
RequestFocusAsBoolean
Tries to set the focus on the current view. Returns True if the focus was set. Most views are not focusable. When a text view is focused the keyboard is shown.
ResignFocusAsBoolean
Removes the focus from the current view. Removing the focus from a text view will hide the keyboard.
SendToBack
Sends the view to the back.
SetAlphaAnimated (DurationMSAsInt, AlphaAsFloat)
Animates the view's alpha level. DurationMS - Animation duration measured in milliseconds. Alpha - The new alpha level (0 - transparent, 1 - fully opaque).
Animates the view's background color. DurationMS - Animation duration measured in milliseconds. BackgroundColor - The new background color. Note that Labels do not support this type of animation.
Animates the view's layout. DurationMS - Animation duration measured in milliseconds. Set to 0 to change the layout immediately. DampingRatio - If smaller than 1 then a spring effect will be applied to the animation. The minimum value should be 0.1. Set to 1 for no spring effect. Left, Top, Width and Height - The new layout.
Adds a parallax effect to the view. The view will slightly move when the device is tilted. Vertical - Vertical offset. Can be a positive or negative value. Horizontal - Horizontal offset. Can be a positive or negative value.
Adds a shadow to to the view. The border corners radius should be set to 0 when adding shadows. Colors - The shadow color. OffsetX, OffsetY - The horizontal and vertical offsets. Opacity - Sets the shadow opacity: 0 - transparent, 1 - opaque. StaticRect - (optimization parameter) Set this parameter to True if the view's size is constant.
SetTestDevices (DeviceIdsAsList)
Sets the test devices. Check the logs for the current device id.
SIZE_BANNERAsObject [read only]
iPhone ad size (320x50)
SIZE_FULL_BANNERAsObject [read only]
iPad ad size (468x60)
SIZE_LARGE_BANNERAsObject [read only]
Taller version of the standard banner (320x100)
SIZE_LEADERBOARDAsObject [read only]
iPad ad size (728x90)
SIZE_SMART_BANNER_LANDSCAPEAsObject [read only]
SIZE_SMART_BANNER_PORTRAITAsObject [read only]
SizeToFit
Resizes the view to make it fit its content.
TagAsObject
Gets or sets the Tag object. This is a placeholder for any object you like to tie to this object.
TintColorAsInt
Gets or sets the view's tint color. Some views use this color to change their appearance.
TopAsFloat
Gets or sets the view's top position.
UserInteractionEnabledAsBoolean
Gets or sets whether the user can interact with this view. True by default.
This object allows you to show interstitial ads (full screen ads). You need to request an ad by calling RequestAd and then wait for the Ready event. If the Success parameter is true then you can call Show to show the full screen ad. Note that you can show it whenever you like.
A video ad where the user is rewarded if it is fully watched. The Rewarded event will be raised in that case. Note that AdMob does not server these ads directly. You need to use the mediation feature to add an ad network that supports this type of ads.
Events:
ReceiveAd FailedToReceiveAd (ErrorCode As String) AdClosed AdOpened AdLeftApplication Rewarded (Item As Object)