-
Notifications
You must be signed in to change notification settings - Fork 2
/
GridLayout+LayoutParams.xml
524 lines (515 loc) · 35.8 KB
/
GridLayout+LayoutParams.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
<Type Name="GridLayout+LayoutParams" FullName="Android.Widget.GridLayout+LayoutParams">
<TypeSignature Language="C#" Value="public class GridLayout.LayoutParams : Android.Views.ViewGroup.MarginLayoutParams" />
<TypeSignature Language="ILAsm" Value=".class nested public auto ansi beforefieldinit GridLayout/LayoutParams extends Android.Views.ViewGroup/MarginLayoutParams" />
<TypeSignature Language="DocId" Value="T:Android.Widget.GridLayout.LayoutParams" />
<TypeSignature Language="F#" Value="type GridLayout.LayoutParams = class
 inherit ViewGroup.MarginLayoutParams" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Android.Views.ViewGroup+MarginLayoutParams</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("android/widget/GridLayout$LayoutParams", DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/widget/GridLayout$LayoutParams", DoNotGenerateAcw=true)>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Layout information associated with each of the children of a GridLayout.</summary>
<remarks>
<para>Layout information associated with each of the children of a GridLayout.</para>
<para>GridLayout supports both row and column spanning and arbitrary forms of alignment within
each cell group. The fundamental parameters associated with each cell group are
gathered into their vertical and horizontal components and stored
in the <c>#rowSpec</c> and <c>#columnSpec</c> layout parameters.
<c>GridLayout.Spec Specs</c> are immutable structures
and may be shared between the layout parameters of different children.</para>
<para>The row and column specs contain the leading and trailing indices along each axis
and together specify the four grid indices that delimit the cells of this cell group.</para>
<para>The alignment properties of the row and column specs together specify
both aspects of alignment within the cell group. It is also possible to specify a child's
alignment within its cell group by using the <c>GridLayout.LayoutParams#setGravity(int)</c>
method.</para>
<para>The weight property is also included in Spec and specifies the proportion of any
excess space that is due to the associated view.
<h4>WRAP_CONTENT and MATCH_PARENT</h4>
Because the default values of the <c>#width</c> and <c>#height</c>
properties are both <c>#WRAP_CONTENT</c>, this value never needs to be explicitly
declared in the layout parameters of GridLayout's children. In addition,
GridLayout does not distinguish the special size value <c>#MATCH_PARENT</c> from
<c>#WRAP_CONTENT</c>. A component's ability to expand to the size of the parent is
instead controlled by the principle of <em>flexibility</em>,
as discussed in <c>GridLayout</c>.
<h4>Summary</h4>
You should not need to use either of the special size values:
<c>WRAP_CONTENT</c> or <c>MATCH_PARENT</c> when configuring the children of
a GridLayout.
<h4>Default values</h4>
<ul>
<li><c>#width</c> = <c>#WRAP_CONTENT</c></li>
<li><c>#height</c> = <c>#WRAP_CONTENT</c></li>
<li><c>#topMargin</c> = 0 when
<c>GridLayout#setUseDefaultMargins(boolean) useDefaultMargins</c> is
<c>false</c>; otherwise <c>#UNDEFINED</c>, to
indicate that a default value should be computed on demand. </li>
<li><c>#leftMargin</c> = 0 when
<c>GridLayout#setUseDefaultMargins(boolean) useDefaultMargins</c> is
<c>false</c>; otherwise <c>#UNDEFINED</c>, to
indicate that a default value should be computed on demand. </li>
<li><c>#bottomMargin</c> = 0 when
<c>GridLayout#setUseDefaultMargins(boolean) useDefaultMargins</c> is
<c>false</c>; otherwise <c>#UNDEFINED</c>, to
indicate that a default value should be computed on demand. </li>
<li><c>#rightMargin</c> = 0 when
<c>GridLayout#setUseDefaultMargins(boolean) useDefaultMargins</c> is
<c>false</c>; otherwise <c>#UNDEFINED</c>, to
indicate that a default value should be computed on demand. </li>
<li><c>#rowSpec</c><c>.row</c> = <c>#UNDEFINED</c></li>
<li><c>#rowSpec</c><c>.rowSpan</c> = 1 </li>
<li><c>#rowSpec</c><c>.alignment</c> = <c>#BASELINE</c></li>
<li><c>#rowSpec</c><c>.weight</c> = 0 </li>
<li><c>#columnSpec</c><c>.column</c> = <c>#UNDEFINED</c></li>
<li><c>#columnSpec</c><c>.columnSpan</c> = 1 </li>
<li><c>#columnSpec</c><c>.alignment</c> = <c>#START</c></li>
<li><c>#columnSpec</c><c>.weight</c> = 0 </li>
</ul>
See <c>GridLayout</c> for a more complete description of the conventions
used by GridLayout in the interpretation of the properties of this class.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/widget/GridLayout.LayoutParams" title="Reference documentation">Java documentation for <code>android.widget.GridLayout.LayoutParams</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 14" />
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public LayoutParams ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.GridLayout.LayoutParams.#ctor" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "()V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "()V", "")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters />
<Docs>
<summary>Constructs a new LayoutParams with default values as defined in <c>LayoutParams</c>.</summary>
<remarks>
<para>Constructs a new LayoutParams with default values as defined in <c>LayoutParams</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/widget/GridLayout.LayoutParams#GridLayout$LayoutParams()" title="Reference documentation">Java documentation for <code>android.widget.GridLayout.LayoutParams.GridLayout$LayoutParams()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 14" />
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public LayoutParams (Android.Views.ViewGroup.LayoutParams params);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Android.Views.ViewGroup/LayoutParams params) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.GridLayout.LayoutParams.#ctor(Android.Views.ViewGroup.LayoutParams)" />
<MemberSignature Language="F#" Value="new Android.Widget.GridLayout.LayoutParams : Android.Views.ViewGroup.LayoutParams -> Android.Widget.GridLayout.LayoutParams" Usage="new Android.Widget.GridLayout.LayoutParams params" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "(Landroid/view/ViewGroup$LayoutParams;)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(Landroid/view/ViewGroup$LayoutParams;)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="params" Type="Android.Views.ViewGroup+LayoutParams" />
</Parameters>
<Docs>
<param name="params">To be added.</param>
<summary>
</summary>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 14" />
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public LayoutParams (Android.Views.ViewGroup.MarginLayoutParams params);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Android.Views.ViewGroup/MarginLayoutParams params) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.GridLayout.LayoutParams.#ctor(Android.Views.ViewGroup.MarginLayoutParams)" />
<MemberSignature Language="F#" Value="new Android.Widget.GridLayout.LayoutParams : Android.Views.ViewGroup.MarginLayoutParams -> Android.Widget.GridLayout.LayoutParams" Usage="new Android.Widget.GridLayout.LayoutParams params" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "(Landroid/view/ViewGroup$MarginLayoutParams;)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(Landroid/view/ViewGroup$MarginLayoutParams;)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="params" Type="Android.Views.ViewGroup+MarginLayoutParams" />
</Parameters>
<Docs>
<param name="params">To be added.</param>
<summary>
</summary>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 14" />
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public LayoutParams (Android.Widget.GridLayout.LayoutParams source);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Android.Widget.GridLayout/LayoutParams source) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.GridLayout.LayoutParams.#ctor(Android.Widget.GridLayout.LayoutParams)" />
<MemberSignature Language="F#" Value="new Android.Widget.GridLayout.LayoutParams : Android.Widget.GridLayout.LayoutParams -> Android.Widget.GridLayout.LayoutParams" Usage="new Android.Widget.GridLayout.LayoutParams source" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "(Landroid/widget/GridLayout$LayoutParams;)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(Landroid/widget/GridLayout$LayoutParams;)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="source" Type="Android.Widget.GridLayout+LayoutParams" />
</Parameters>
<Docs>
<param name="source">To be added.</param>
<summary>
</summary>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 14" />
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public LayoutParams (Android.Content.Context context, Android.Util.IAttributeSet attrs);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Android.Content.Context context, class Android.Util.IAttributeSet attrs) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.GridLayout.LayoutParams.#ctor(Android.Content.Context,Android.Util.IAttributeSet)" />
<MemberSignature Language="F#" Value="new Android.Widget.GridLayout.LayoutParams : Android.Content.Context * Android.Util.IAttributeSet -> Android.Widget.GridLayout.LayoutParams" Usage="new Android.Widget.GridLayout.LayoutParams (context, attrs)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="context" Type="Android.Content.Context" />
<Parameter Name="attrs" Type="Android.Util.IAttributeSet" />
</Parameters>
<Docs>
<param name="context">To be added.</param>
<param name="attrs">To be added.</param>
<summary>To be added
Values not defined in the attribute set take the default values
defined in <c>LayoutParams</c>.</summary>
<remarks>
<para>To be added
Values not defined in the attribute set take the default values
defined in <c>LayoutParams</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/widget/GridLayout.LayoutParams#GridLayout$LayoutParams(android.content.Context,%20android.util.AttributeSet)" title="Reference documentation">Java documentation for <code>android.widget.GridLayout.LayoutParams.GridLayout$LayoutParams(android.content.Context, android.util.AttributeSet)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 14" />
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public LayoutParams (Android.Widget.GridLayout.Spec rowSpec, Android.Widget.GridLayout.Spec columnSpec);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Android.Widget.GridLayout/Spec rowSpec, class Android.Widget.GridLayout/Spec columnSpec) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.GridLayout.LayoutParams.#ctor(Android.Widget.GridLayout.Spec,Android.Widget.GridLayout.Spec)" />
<MemberSignature Language="F#" Value="new Android.Widget.GridLayout.LayoutParams : Android.Widget.GridLayout.Spec * Android.Widget.GridLayout.Spec -> Android.Widget.GridLayout.LayoutParams" Usage="new Android.Widget.GridLayout.LayoutParams (rowSpec, columnSpec)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "(Landroid/widget/GridLayout$Spec;Landroid/widget/GridLayout$Spec;)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(Landroid/widget/GridLayout$Spec;Landroid/widget/GridLayout$Spec;)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="rowSpec" Type="Android.Widget.GridLayout+Spec" />
<Parameter Name="columnSpec" Type="Android.Widget.GridLayout+Spec" />
</Parameters>
<Docs>
<param name="rowSpec">To be added.</param>
<param name="columnSpec">To be added.</param>
<summary>Constructs a new LayoutParams instance for this <c>rowSpec</c>
and <c>columnSpec</c>.</summary>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 14" />
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected LayoutParams (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(native int javaReference, valuetype Android.Runtime.JniHandleOwnership transfer) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.GridLayout.LayoutParams.#ctor(System.IntPtr,Android.Runtime.JniHandleOwnership)" />
<MemberSignature Language="F#" Value="new Android.Widget.GridLayout.LayoutParams : nativeint * Android.Runtime.JniHandleOwnership -> Android.Widget.GridLayout.LayoutParams" Usage="new Android.Widget.GridLayout.LayoutParams (javaReference, transfer)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="javaReference" Type="System.IntPtr" />
<Parameter Name="transfer" Type="Android.Runtime.JniHandleOwnership" />
</Parameters>
<Docs>
<param name="javaReference">A <see cref="T:System.IntPtr" />containing a Java Native Interface (JNI) object reference.</param>
<param name="transfer">A <see cref="T:Android.Runtime.JniHandleOwnership" />indicating how to handle <paramref name="javaReference" /></param>
<summary>A constructor used when creating managed representations of JNI objects; called by the runtime.</summary>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ColumnSpec">
<MemberSignature Language="C#" Value="public Android.Widget.GridLayout.Spec ColumnSpec { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.Widget.GridLayout/Spec ColumnSpec" />
<MemberSignature Language="DocId" Value="P:Android.Widget.GridLayout.LayoutParams.ColumnSpec" />
<MemberSignature Language="F#" Value="member this.ColumnSpec : Android.Widget.GridLayout.Spec with get, set" Usage="Android.Widget.GridLayout.LayoutParams.ColumnSpec" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("columnSpec")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("columnSpec")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Widget.GridLayout+Spec</ReturnType>
</ReturnValue>
<Docs>
<summary>The spec that defines the horizontal characteristics of the cell group
described by these layout parameters.</summary>
<value>To be added.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 14" />
</Docs>
</Member>
<Member MemberName="JniPeerMembers">
<MemberSignature Language="C#" Value="public override Java.Interop.JniPeerMembers JniPeerMembers { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Java.Interop.JniPeerMembers JniPeerMembers" />
<MemberSignature Language="DocId" Value="P:Android.Widget.GridLayout.LayoutParams.JniPeerMembers" />
<MemberSignature Language="F#" Value="member this.JniPeerMembers : Java.Interop.JniPeerMembers" Usage="Android.Widget.GridLayout.LayoutParams.JniPeerMembers" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Interop.JniPeerMembers</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="RowSpec">
<MemberSignature Language="C#" Value="public Android.Widget.GridLayout.Spec RowSpec { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.Widget.GridLayout/Spec RowSpec" />
<MemberSignature Language="DocId" Value="P:Android.Widget.GridLayout.LayoutParams.RowSpec" />
<MemberSignature Language="F#" Value="member this.RowSpec : Android.Widget.GridLayout.Spec with get, set" Usage="Android.Widget.GridLayout.LayoutParams.RowSpec" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("rowSpec")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("rowSpec")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Widget.GridLayout+Spec</ReturnType>
</ReturnValue>
<Docs>
<summary>The spec that defines the vertical characteristics of the cell group
described by these layout parameters.</summary>
<value>To be added.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 14" />
</Docs>
</Member>
<Member MemberName="SetGravity">
<MemberSignature Language="C#" Value="public virtual void SetGravity (Android.Views.GravityFlags gravity);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void SetGravity(valuetype Android.Views.GravityFlags gravity) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.GridLayout.LayoutParams.SetGravity(Android.Views.GravityFlags)" />
<MemberSignature Language="F#" Value="abstract member SetGravity : Android.Views.GravityFlags -> unit
override this.SetGravity : Android.Views.GravityFlags -> unit" Usage="layoutParams.SetGravity gravity" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("setGravity", "(I)V", "GetSetGravity_IHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("setGravity", "(I)V", "GetSetGravity_IHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="gravity" Type="Android.Views.GravityFlags">
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.GeneratedEnum]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.GeneratedEnum>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="gravity">the new gravity value</param>
<summary>Describes how the child views are positioned.</summary>
<remarks>
<para>Describes how the child views are positioned. Default is <c>LEFT | BASELINE</c>.
See <c>Gravity</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/widget/GridLayout.LayoutParams#setGravity(int)" title="Reference documentation">Java documentation for <code>android.widget.GridLayout.LayoutParams.setGravity(int)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 14" />
</Docs>
</Member>
<Member MemberName="ThresholdClass">
<MemberSignature Language="C#" Value="protected override IntPtr ThresholdClass { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance native int ThresholdClass" />
<MemberSignature Language="DocId" Value="P:Android.Widget.GridLayout.LayoutParams.ThresholdClass" />
<MemberSignature Language="F#" Value="member this.ThresholdClass : nativeint" Usage="Android.Widget.GridLayout.LayoutParams.ThresholdClass" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.IntPtr</ReturnType>
</ReturnValue>
<Docs>
<summary>This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.</summary>
<value>A <see cref="T:System.IntPtr" /> which contains the <c>java.lang.Class</c> JNI value corresponding to this type.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ThresholdType">
<MemberSignature Language="C#" Value="protected override Type ThresholdType { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Type ThresholdType" />
<MemberSignature Language="DocId" Value="P:Android.Widget.GridLayout.LayoutParams.ThresholdType" />
<MemberSignature Language="F#" Value="member this.ThresholdType : Type" Usage="Android.Widget.GridLayout.LayoutParams.ThresholdType" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Type</ReturnType>
</ReturnValue>
<Docs>
<summary>This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.</summary>
<value>A <see cref="T:System.Type" /> which provides the declaring type.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
</Members>
</Type>