Android.Widget.FrameLayout Class
FrameLayout is designed to block out an area on the screen to display a single item.

See Also: FrameLayout Members

Syntax

[Android.Runtime.Register("android/widget/FrameLayout", DoNotGenerateAcw=true)]
public class FrameLayout : Android.Views.ViewGroup

Remarks

FrameLayout is designed to block out an area on the screen to display a single item. Generally, FrameLayout should be used to hold a single child view, because it can be difficult to organize child views in a way that's scalable to different screen sizes without the children overlapping each other. You can, however, add multiple children to a FrameLayout and control their position within the FrameLayout by assigning gravity to each child, using the attribute.

Child views are drawn in a stack, with the most recently added child on top. The size of the FrameLayout is the size of its largest child (plus padding), visible or not (if the FrameLayout's parent permits). Views that are Android.Views.View.GONE are used for sizing only if FrameLayout.SetMeasureAllChildren(bool) is set to true.

[Android Documentation]

Requirements

Namespace: Android.Widget
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1