LinearLayout.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
| LinearLayout.LayoutParams(ViewGroup+LayoutParams) | |
| LinearLayout.LayoutParams(ViewGroup+MarginLayoutParams) | |
| LinearLayout.LayoutParams(LinearLayout+LayoutParams) | |
| LinearLayout.LayoutParams(Context, IAttributeSet) | To be added | 
| LinearLayout.LayoutParams(Int32, Int32) | To be added | 
| LinearLayout.LayoutParams(IntPtr, JniHandleOwnership) | A constructor used when creating managed representations of JNI objects; called by the runtime. | 
| LinearLayout.LayoutParams(Int32, Int32, Single) | Creates a new set of layout parameters with the specified width, height and weight. | 
LinearLayout.LayoutParams(ViewGroup+LayoutParams)
[Android.Runtime.Register(".ctor", "(Landroid/view/ViewGroup$LayoutParams;)V", "")]
public LayoutParams(Android.Views.ViewGroup.LayoutParams? p);[<Android.Runtime.Register(".ctor", "(Landroid/view/ViewGroup$LayoutParams;)V", "")>]
new Android.Widget.LinearLayout.LayoutParams : Android.Views.ViewGroup.LayoutParams -> Android.Widget.LinearLayout.LayoutParamsParameters
- 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
LinearLayout.LayoutParams(ViewGroup+MarginLayoutParams)
[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.LinearLayout.LayoutParams : Android.Views.ViewGroup.MarginLayoutParams -> Android.Widget.LinearLayout.LayoutParamsParameters
- source
- ViewGroup.MarginLayoutParams
- 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
LinearLayout.LayoutParams(LinearLayout+LayoutParams)
[Android.Runtime.Register(".ctor", "(Landroid/widget/LinearLayout$LayoutParams;)V", "")]
public LayoutParams(Android.Widget.LinearLayout.LayoutParams? source);[<Android.Runtime.Register(".ctor", "(Landroid/widget/LinearLayout$LayoutParams;)V", "")>]
new Android.Widget.LinearLayout.LayoutParams : Android.Widget.LinearLayout.LayoutParams -> Android.Widget.LinearLayout.LayoutParamsParameters
- source
- LinearLayout.LayoutParams
- 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
LinearLayout.LayoutParams(Context, IAttributeSet)
To be added
[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.LinearLayout.LayoutParams : Android.Content.Context * Android.Util.IAttributeSet -> Android.Widget.LinearLayout.LayoutParamsParameters
- c
- Context
- attrs
- IAttributeSet
- Attributes
Remarks
To be added
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
LinearLayout.LayoutParams(Int32, Int32)
To be added
[Android.Runtime.Register(".ctor", "(II)V", "")]
public LayoutParams(int width, int height);[<Android.Runtime.Register(".ctor", "(II)V", "")>]
new Android.Widget.LinearLayout.LayoutParams : int * int -> Android.Widget.LinearLayout.LayoutParamsParameters
- width
- Int32
- height
- Int32
- Attributes
Remarks
To be added
Java documentation for android.widget.LinearLayout.LayoutParams.LinearLayout$LayoutParams(int, int).
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
LinearLayout.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.LinearLayout.LayoutParams : nativeint * Android.Runtime.JniHandleOwnership -> Android.Widget.LinearLayout.LayoutParamsParameters
- 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
LinearLayout.LayoutParams(Int32, Int32, Single)
Creates a new set of layout parameters with the specified width, height and weight.
[Android.Runtime.Register(".ctor", "(IIF)V", "")]
public LayoutParams(int width, int height, float weight);[<Android.Runtime.Register(".ctor", "(IIF)V", "")>]
new Android.Widget.LinearLayout.LayoutParams : int * int * single -> Android.Widget.LinearLayout.LayoutParamsParameters
- 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
- weight
- Single
the weight
- Attributes
Remarks
Creates a new set of layout parameters with the specified width, height and weight.
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.