FrameLayout.LayoutParams Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| FrameLayout.LayoutParams(ViewGroup+LayoutParams) |
Initializes a new instance. |
| FrameLayout.LayoutParams(ViewGroup+MarginLayoutParams) |
Initializes a new instance. |
| FrameLayout.LayoutParams(FrameLayout+LayoutParams) |
Initializes a new instance. |
| FrameLayout.LayoutParams(Context, IAttributeSet) |
Initializes a new instance. |
| FrameLayout.LayoutParams(Int32, Int32) |
Initializes a new instance. |
| FrameLayout.LayoutParams(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
| FrameLayout.LayoutParams(Int32, Int32, GravityFlags) |
Creates a new set of layout parameters with the specified width, height and gravity. |
FrameLayout.LayoutParams(ViewGroup+LayoutParams)
Initializes a new instance.
[Android.Runtime.Register(".ctor", "(Landroid/view/ViewGroup$LayoutParams;)V", "")]
public LayoutParams(Android.Views.ViewGroup.LayoutParams source);
[<Android.Runtime.Register(".ctor", "(Landroid/view/ViewGroup$LayoutParams;)V", "")>]
new Android.Widget.FrameLayout.LayoutParams : Android.Views.ViewGroup.LayoutParams -> Android.Widget.FrameLayout.LayoutParams
Parameters
- source
- ViewGroup.LayoutParams
ViewGroup.LayoutParams : This value cannot be null .
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
FrameLayout.LayoutParams(ViewGroup+MarginLayoutParams)
Initializes a new instance.
[Android.Runtime.Register(".ctor", "(Landroid/view/ViewGroup$MarginLayoutParams;)V", "")]
public LayoutParams(Android.Views.ViewGroup.MarginLayoutParams source);
[<Android.Runtime.Register(".ctor", "(Landroid/view/ViewGroup$MarginLayoutParams;)V", "")>]
new Android.Widget.FrameLayout.LayoutParams : Android.Views.ViewGroup.MarginLayoutParams -> Android.Widget.FrameLayout.LayoutParams
Parameters
- source
- ViewGroup.MarginLayoutParams
ViewGroup.MarginLayoutParams : This value cannot be null .
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
FrameLayout.LayoutParams(FrameLayout+LayoutParams)
Initializes a new instance.
[Android.Runtime.Register(".ctor", "(Landroid/widget/FrameLayout$LayoutParams;)V", "")]
public LayoutParams(Android.Widget.FrameLayout.LayoutParams source);
[<Android.Runtime.Register(".ctor", "(Landroid/widget/FrameLayout$LayoutParams;)V", "")>]
new Android.Widget.FrameLayout.LayoutParams : Android.Widget.FrameLayout.LayoutParams -> Android.Widget.FrameLayout.LayoutParams
Parameters
- source
- FrameLayout.LayoutParams
FrameLayout.LayoutParams : The layout params to copy from. This value cannot be null .
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
FrameLayout.LayoutParams(Context, IAttributeSet)
Initializes a new instance.
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;)V", "")]
public LayoutParams(Android.Content.Context c, Android.Util.IAttributeSet? attrs);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;)V", "")>]
new Android.Widget.FrameLayout.LayoutParams : Android.Content.Context * Android.Util.IAttributeSet -> Android.Widget.FrameLayout.LayoutParams
Parameters
- c
- Context
Context : This value cannot be null .
- attrs
- IAttributeSet
The attributes supplied from XML.
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
FrameLayout.LayoutParams(Int32, Int32)
Initializes a new instance.
[Android.Runtime.Register(".ctor", "(II)V", "")]
public LayoutParams(int width, int height);
[<Android.Runtime.Register(".ctor", "(II)V", "")>]
new Android.Widget.FrameLayout.LayoutParams : int * int -> Android.Widget.FrameLayout.LayoutParams
Parameters
- width
- Int32
The width in pixels, MatchParent, or WrapContent.
- height
- Int32
The height in pixels, MatchParent, or WrapContent.
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
FrameLayout.LayoutParams(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected LayoutParams(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Widget.FrameLayout.LayoutParams : nativeint * Android.Runtime.JniHandleOwnership -> Android.Widget.FrameLayout.LayoutParams
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
FrameLayout.LayoutParams(Int32, Int32, GravityFlags)
Creates a new set of layout parameters with the specified width, height and gravity.
[Android.Runtime.Register(".ctor", "(III)V", "")]
public LayoutParams(int width, int height, Android.Views.GravityFlags gravity);
[<Android.Runtime.Register(".ctor", "(III)V", "")>]
new Android.Widget.FrameLayout.LayoutParams : int * int * Android.Views.GravityFlags -> Android.Widget.FrameLayout.LayoutParams
Parameters
- width
- Int32
the width, either #MATCH_PARENT,
#WRAP_CONTENT or a fixed size in pixels
- height
- Int32
the height, either #MATCH_PARENT,
#WRAP_CONTENT or a fixed size in pixels
- gravity
- GravityFlags
the gravity
- Attributes
Remarks
Creates a new set of layout parameters with the specified width, height and gravity.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.