-
Notifications
You must be signed in to change notification settings - Fork 2
/
SimpleCursorTreeAdapter.xml
601 lines (600 loc) · 46.2 KB
/
SimpleCursorTreeAdapter.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
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
<Type Name="SimpleCursorTreeAdapter" FullName="Android.Widget.SimpleCursorTreeAdapter">
<TypeSignature Language="C#" Value="public abstract class SimpleCursorTreeAdapter : Android.Widget.ResourceCursorTreeAdapter" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit SimpleCursorTreeAdapter extends Android.Widget.ResourceCursorTreeAdapter" />
<TypeSignature Language="DocId" Value="T:Android.Widget.SimpleCursorTreeAdapter" />
<TypeSignature Language="F#" Value="type SimpleCursorTreeAdapter = class
 inherit ResourceCursorTreeAdapter" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Android.Widget.ResourceCursorTreeAdapter</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("android/widget/SimpleCursorTreeAdapter", DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/widget/SimpleCursorTreeAdapter", DoNotGenerateAcw=true)>]</AttributeName>
</Attribute>
</Attributes>
<Docs since="1">
<summary>An easy adapter to map columns from a cursor to TextViews or ImageViews
defined in an XML file.</summary>
<remarks>
<para>An easy adapter to map columns from a cursor to TextViews or ImageViews
defined in an XML file. You can specify which columns you want, which views
you want to display the columns, and the XML file that defines the appearance
of these views. Separate XML files for child and groups are possible.
Binding occurs in two phases. First, if a
<c>android.widget.SimpleCursorTreeAdapter.ViewBinder</c> is available,
<c>ViewBinder#setViewValue(android.view.View, android.database.Cursor, int)</c>
is invoked. If the returned value is true, binding has occurred. If the
returned value is false and the view to bind is a TextView,
<c>#setViewText(TextView, String)</c> is invoked. If the returned value
is false and the view to bind is an ImageView,
<c>#setViewImage(ImageView, String)</c> is invoked. If no appropriate
binding can be found, an <c>IllegalStateException</c> is thrown.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/widget/SimpleCursorTreeAdapter" title="Reference documentation">Java documentation for <code>android.widget.SimpleCursorTreeAdapter</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 1" />
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected SimpleCursorTreeAdapter (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.SimpleCursorTreeAdapter.#ctor(System.IntPtr,Android.Runtime.JniHandleOwnership)" />
<MemberSignature Language="F#" Value="new Android.Widget.SimpleCursorTreeAdapter : nativeint * Android.Runtime.JniHandleOwnership -> Android.Widget.SimpleCursorTreeAdapter" Usage="new Android.Widget.SimpleCursorTreeAdapter (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=".ctor">
<MemberSignature Language="C#" Value="public SimpleCursorTreeAdapter (Android.Content.Context? context, Android.Database.ICursor? cursor, int groupLayout, string[]? groupFrom, int[]? groupTo, int childLayout, string[]? childFrom, int[]? childTo);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Android.Content.Context context, class Android.Database.ICursor cursor, int32 groupLayout, string[] groupFrom, int32[] groupTo, int32 childLayout, string[] childFrom, int32[] childTo) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.SimpleCursorTreeAdapter.#ctor(Android.Content.Context,Android.Database.ICursor,System.Int32,System.String[],System.Int32[],System.Int32,System.String[],System.Int32[])" />
<MemberSignature Language="F#" Value="new Android.Widget.SimpleCursorTreeAdapter : Android.Content.Context * Android.Database.ICursor * int * string[] * int[] * int * string[] * int[] -> Android.Widget.SimpleCursorTreeAdapter" Usage="new Android.Widget.SimpleCursorTreeAdapter (context, cursor, groupLayout, groupFrom, groupTo, childLayout, childFrom, childTo)" />
<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/database/Cursor;I[Ljava/lang/String;[II[Ljava/lang/String;[I)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/database/Cursor;I[Ljava/lang/String;[II[Ljava/lang/String;[I)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="context" Type="Android.Content.Context" />
<Parameter Name="cursor" Type="Android.Database.ICursor" />
<Parameter Name="groupLayout" Type="System.Int32" />
<Parameter Name="groupFrom" Type="System.String[]" />
<Parameter Name="groupTo" Type="System.Int32[]" />
<Parameter Name="childLayout" Type="System.Int32" />
<Parameter Name="childFrom" Type="System.String[]" />
<Parameter Name="childTo" Type="System.Int32[]" />
</Parameters>
<Docs>
<param name="context">The context where the <c>ExpandableListView</c>
associated with this <c>SimpleCursorTreeAdapter</c> is
running</param>
<param name="cursor">The database cursor</param>
<param name="groupLayout">The resource identifier of a layout file that defines
the views for a group. The layout file should include at least
those named views defined in groupTo.</param>
<param name="groupFrom">A list of column names that will be used to display the
data for a group.</param>
<param name="groupTo">The group views (from the group layouts) that should
display column in the "from" parameter. These should all be
TextViews or ImageViews. The first N views in this list are
given the values of the first N columns in the from parameter.</param>
<param name="childLayout">The resource identifier of a layout file that defines
the views for a child. The layout file should include at least
those named views defined in childTo.</param>
<param name="childFrom">A list of column names that will be used to display the
data for a child.</param>
<param name="childTo">The child views (from the child layouts) that should
display column in the "from" parameter. These should all be
TextViews or ImageViews. The first N views in this list are
given the values of the first N columns in the from parameter.</param>
<summary>Constructor.</summary>
<remarks>
<para>Constructor.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/widget/SimpleCursorTreeAdapter#SimpleCursorTreeAdapter(android.content.Context,%20android.database.Cursor,%20int,%20java.lang.String[],%20int[],%20int,%20java.lang.String[],%20int[])" title="Reference documentation">Java documentation for <code>android.widget.SimpleCursorTreeAdapter.SimpleCursorTreeAdapter(android.content.Context, android.database.Cursor, int, java.lang.String[], int[], int, java.lang.String[], 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 1" />
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public SimpleCursorTreeAdapter (Android.Content.Context? context, Android.Database.ICursor? cursor, int collapsedGroupLayout, int expandedGroupLayout, string[]? groupFrom, int[]? groupTo, int childLayout, string[]? childFrom, int[]? childTo);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Android.Content.Context context, class Android.Database.ICursor cursor, int32 collapsedGroupLayout, int32 expandedGroupLayout, string[] groupFrom, int32[] groupTo, int32 childLayout, string[] childFrom, int32[] childTo) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.SimpleCursorTreeAdapter.#ctor(Android.Content.Context,Android.Database.ICursor,System.Int32,System.Int32,System.String[],System.Int32[],System.Int32,System.String[],System.Int32[])" />
<MemberSignature Language="F#" Value="new Android.Widget.SimpleCursorTreeAdapter : Android.Content.Context * Android.Database.ICursor * int * int * string[] * int[] * int * string[] * int[] -> Android.Widget.SimpleCursorTreeAdapter" Usage="new Android.Widget.SimpleCursorTreeAdapter (context, cursor, collapsedGroupLayout, expandedGroupLayout, groupFrom, groupTo, childLayout, childFrom, childTo)" />
<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/database/Cursor;II[Ljava/lang/String;[II[Ljava/lang/String;[I)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/database/Cursor;II[Ljava/lang/String;[II[Ljava/lang/String;[I)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="context" Type="Android.Content.Context" />
<Parameter Name="cursor" Type="Android.Database.ICursor" />
<Parameter Name="collapsedGroupLayout" Type="System.Int32" />
<Parameter Name="expandedGroupLayout" Type="System.Int32" />
<Parameter Name="groupFrom" Type="System.String[]" />
<Parameter Name="groupTo" Type="System.Int32[]" />
<Parameter Name="childLayout" Type="System.Int32" />
<Parameter Name="childFrom" Type="System.String[]" />
<Parameter Name="childTo" Type="System.Int32[]" />
</Parameters>
<Docs>
<param name="context">The context where the <c>ExpandableListView</c>
associated with this <c>SimpleCursorTreeAdapter</c> is
running</param>
<param name="cursor">The database cursor</param>
<param name="collapsedGroupLayout">The resource identifier of a layout file that
defines the views for a collapsed group. The layout file
should include at least those named views defined in groupTo.</param>
<param name="expandedGroupLayout">The resource identifier of a layout file that
defines the views for an expanded group. The layout file
should include at least those named views defined in groupTo.</param>
<param name="groupFrom">A list of column names that will be used to display the
data for a group.</param>
<param name="groupTo">The group views (from the group layouts) that should
display column in the "from" parameter. These should all be
TextViews or ImageViews. The first N views in this list are
given the values of the first N columns in the from parameter.</param>
<param name="childLayout">The resource identifier of a layout file that defines
the views for a child. The layout file
should include at least those named views defined in childTo.</param>
<param name="childFrom">A list of column names that will be used to display the
data for a child.</param>
<param name="childTo">The child views (from the child layouts) that should
display column in the "from" parameter. These should all be
TextViews or ImageViews. The first N views in this list are
given the values of the first N columns in the from parameter.</param>
<summary>Constructor.</summary>
<remarks>
<para>Constructor.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/widget/SimpleCursorTreeAdapter#SimpleCursorTreeAdapter(android.content.Context,%20android.database.Cursor,%20int,%20int,%20java.lang.String[],%20int[],%20int,%20java.lang.String[],%20int[])" title="Reference documentation">Java documentation for <code>android.widget.SimpleCursorTreeAdapter.SimpleCursorTreeAdapter(android.content.Context, android.database.Cursor, int, int, java.lang.String[], int[], int, java.lang.String[], 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 1" />
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public SimpleCursorTreeAdapter (Android.Content.Context? context, Android.Database.ICursor? cursor, int collapsedGroupLayout, int expandedGroupLayout, string[]? groupFrom, int[]? groupTo, int childLayout, int lastChildLayout, string[]? childFrom, int[]? childTo);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Android.Content.Context context, class Android.Database.ICursor cursor, int32 collapsedGroupLayout, int32 expandedGroupLayout, string[] groupFrom, int32[] groupTo, int32 childLayout, int32 lastChildLayout, string[] childFrom, int32[] childTo) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.SimpleCursorTreeAdapter.#ctor(Android.Content.Context,Android.Database.ICursor,System.Int32,System.Int32,System.String[],System.Int32[],System.Int32,System.Int32,System.String[],System.Int32[])" />
<MemberSignature Language="F#" Value="new Android.Widget.SimpleCursorTreeAdapter : Android.Content.Context * Android.Database.ICursor * int * int * string[] * int[] * int * int * string[] * int[] -> Android.Widget.SimpleCursorTreeAdapter" Usage="new Android.Widget.SimpleCursorTreeAdapter (context, cursor, collapsedGroupLayout, expandedGroupLayout, groupFrom, groupTo, childLayout, lastChildLayout, childFrom, childTo)" />
<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/database/Cursor;II[Ljava/lang/String;[III[Ljava/lang/String;[I)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/database/Cursor;II[Ljava/lang/String;[III[Ljava/lang/String;[I)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="context" Type="Android.Content.Context" />
<Parameter Name="cursor" Type="Android.Database.ICursor" />
<Parameter Name="collapsedGroupLayout" Type="System.Int32" />
<Parameter Name="expandedGroupLayout" Type="System.Int32" />
<Parameter Name="groupFrom" Type="System.String[]" />
<Parameter Name="groupTo" Type="System.Int32[]" />
<Parameter Name="childLayout" Type="System.Int32" />
<Parameter Name="lastChildLayout" Type="System.Int32" />
<Parameter Name="childFrom" Type="System.String[]" />
<Parameter Name="childTo" Type="System.Int32[]" />
</Parameters>
<Docs>
<param name="context">The context where the <c>ExpandableListView</c>
associated with this <c>SimpleCursorTreeAdapter</c> is
running</param>
<param name="cursor">The database cursor</param>
<param name="collapsedGroupLayout">The resource identifier of a layout file that
defines the views for a collapsed group. The layout file
should include at least those named views defined in groupTo.</param>
<param name="expandedGroupLayout">The resource identifier of a layout file that
defines the views for an expanded group. The layout file
should include at least those named views defined in groupTo.</param>
<param name="groupFrom">A list of column names that will be used to display the
data for a group.</param>
<param name="groupTo">The group views (from the group layouts) that should
display column in the "from" parameter. These should all be
TextViews or ImageViews. The first N views in this list are
given the values of the first N columns in the from parameter.</param>
<param name="childLayout">The resource identifier of a layout file that defines
the views for a child (except the last). The layout file
should include at least those named views defined in childTo.</param>
<param name="lastChildLayout">The resource identifier of a layout file that
defines the views for the last child within a group. The
layout file should include at least those named views defined
in childTo.</param>
<param name="childFrom">A list of column names that will be used to display the
data for a child.</param>
<param name="childTo">The child views (from the child layouts) that should
display column in the "from" parameter. These should all be
TextViews or ImageViews. The first N views in this list are
given the values of the first N columns in the from parameter.</param>
<summary>Constructor.</summary>
<remarks>
<para>Constructor.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/widget/SimpleCursorTreeAdapter#SimpleCursorTreeAdapter(android.content.Context,%20android.database.Cursor,%20int,%20int,%20java.lang.String[],%20int[],%20int,%20int,%20java.lang.String[],%20int[])" title="Reference documentation">Java documentation for <code>android.widget.SimpleCursorTreeAdapter.SimpleCursorTreeAdapter(android.content.Context, android.database.Cursor, int, int, java.lang.String[], int[], int, int, java.lang.String[], 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 1" />
</Docs>
</Member>
<Member MemberName="BindChildView">
<MemberSignature Language="C#" Value="protected override void BindChildView (Android.Views.View? view, Android.Content.Context? context, Android.Database.ICursor? cursor, bool isLastChild);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void BindChildView(class Android.Views.View view, class Android.Content.Context context, class Android.Database.ICursor cursor, bool isLastChild) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.SimpleCursorTreeAdapter.BindChildView(Android.Views.View,Android.Content.Context,Android.Database.ICursor,System.Boolean)" />
<MemberSignature Language="F#" Value="override this.BindChildView : Android.Views.View * Android.Content.Context * Android.Database.ICursor * bool -> unit" Usage="simpleCursorTreeAdapter.BindChildView (view, context, cursor, isLastChild)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("bindChildView", "(Landroid/view/View;Landroid/content/Context;Landroid/database/Cursor;Z)V", "GetBindChildView_Landroid_view_View_Landroid_content_Context_Landroid_database_Cursor_ZHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("bindChildView", "(Landroid/view/View;Landroid/content/Context;Landroid/database/Cursor;Z)V", "GetBindChildView_Landroid_view_View_Landroid_content_Context_Landroid_database_Cursor_ZHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="view" Type="Android.Views.View" />
<Parameter Name="context" Type="Android.Content.Context" />
<Parameter Name="cursor" Type="Android.Database.ICursor" />
<Parameter Name="isLastChild" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="view">Existing view, returned earlier by newChildView</param>
<param name="context">Interface to application's global information</param>
<param name="cursor">The cursor from which to get the data. The cursor is
already moved to the correct position.</param>
<param name="isLastChild">Whether the child is the last child within its group.
</param>
<summary>Bind an existing view to the child data pointed to by cursor</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 1" />
</Docs>
</Member>
<Member MemberName="BindGroupView">
<MemberSignature Language="C#" Value="protected override void BindGroupView (Android.Views.View? view, Android.Content.Context? context, Android.Database.ICursor? cursor, bool isExpanded);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void BindGroupView(class Android.Views.View view, class Android.Content.Context context, class Android.Database.ICursor cursor, bool isExpanded) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.SimpleCursorTreeAdapter.BindGroupView(Android.Views.View,Android.Content.Context,Android.Database.ICursor,System.Boolean)" />
<MemberSignature Language="F#" Value="override this.BindGroupView : Android.Views.View * Android.Content.Context * Android.Database.ICursor * bool -> unit" Usage="simpleCursorTreeAdapter.BindGroupView (view, context, cursor, isExpanded)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("bindGroupView", "(Landroid/view/View;Landroid/content/Context;Landroid/database/Cursor;Z)V", "GetBindGroupView_Landroid_view_View_Landroid_content_Context_Landroid_database_Cursor_ZHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("bindGroupView", "(Landroid/view/View;Landroid/content/Context;Landroid/database/Cursor;Z)V", "GetBindGroupView_Landroid_view_View_Landroid_content_Context_Landroid_database_Cursor_ZHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="view" Type="Android.Views.View" />
<Parameter Name="context" Type="Android.Content.Context" />
<Parameter Name="cursor" Type="Android.Database.ICursor" />
<Parameter Name="isExpanded" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="view">Existing view, returned earlier by newGroupView.</param>
<param name="context">Interface to application's global information</param>
<param name="cursor">The cursor from which to get the data. The cursor is
already moved to the correct position.</param>
<param name="isExpanded">Whether the group is expanded.
</param>
<summary>Bind an existing view to the group data pointed to by cursor.</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 1" />
</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.SimpleCursorTreeAdapter.JniPeerMembers" />
<MemberSignature Language="F#" Value="member this.JniPeerMembers : Java.Interop.JniPeerMembers" Usage="Android.Widget.SimpleCursorTreeAdapter.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="SetViewImage">
<MemberSignature Language="C#" Value="protected virtual void SetViewImage (Android.Widget.ImageView? v, string? value);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void SetViewImage(class Android.Widget.ImageView v, string value) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.SimpleCursorTreeAdapter.SetViewImage(Android.Widget.ImageView,System.String)" />
<MemberSignature Language="F#" Value="abstract member SetViewImage : Android.Widget.ImageView * string -> unit
override this.SetViewImage : Android.Widget.ImageView * string -> unit" Usage="simpleCursorTreeAdapter.SetViewImage (v, value)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("setViewImage", "(Landroid/widget/ImageView;Ljava/lang/String;)V", "GetSetViewImage_Landroid_widget_ImageView_Ljava_lang_String_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("setViewImage", "(Landroid/widget/ImageView;Ljava/lang/String;)V", "GetSetViewImage_Landroid_widget_ImageView_Ljava_lang_String_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="v" Type="Android.Widget.ImageView" />
<Parameter Name="value" Type="System.String" />
</Parameters>
<Docs>
<param name="v">ImageView to receive an image</param>
<param name="value">the value retrieved from the cursor</param>
<summary>Called by bindView() to set the image for an ImageView.</summary>
<remarks>
<para>Called by bindView() to set the image for an ImageView. By default, the
value will be treated as a Uri. Intended to be overridden by Adapters
that need to filter strings retrieved from the database.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/widget/SimpleCursorTreeAdapter#setViewImage(android.widget.ImageView,%20java.lang.String)" title="Reference documentation">Java documentation for <code>android.widget.SimpleCursorTreeAdapter.setViewImage(android.widget.ImageView, java.lang.String)</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 1" />
</Docs>
</Member>
<Member MemberName="SetViewText">
<MemberSignature Language="C#" Value="public virtual void SetViewText (Android.Widget.TextView? v, string? text);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void SetViewText(class Android.Widget.TextView v, string text) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Widget.SimpleCursorTreeAdapter.SetViewText(Android.Widget.TextView,System.String)" />
<MemberSignature Language="F#" Value="abstract member SetViewText : Android.Widget.TextView * string -> unit
override this.SetViewText : Android.Widget.TextView * string -> unit" Usage="simpleCursorTreeAdapter.SetViewText (v, text)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("setViewText", "(Landroid/widget/TextView;Ljava/lang/String;)V", "GetSetViewText_Landroid_widget_TextView_Ljava_lang_String_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("setViewText", "(Landroid/widget/TextView;Ljava/lang/String;)V", "GetSetViewText_Landroid_widget_TextView_Ljava_lang_String_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="v" Type="Android.Widget.TextView" />
<Parameter Name="text" Type="System.String" />
</Parameters>
<Docs>
<param name="v">TextView to receive text</param>
<param name="text">the text to be set for the TextView</param>
<summary>Called by bindView() to set the text for a TextView but only if
there is no existing ViewBinder or if the existing ViewBinder cannot
handle binding to a TextView.</summary>
<remarks>
<para>Called by bindView() to set the text for a TextView but only if
there is no existing ViewBinder or if the existing ViewBinder cannot
handle binding to a TextView.</para>
<para>Intended to be overridden by Adapters that need to filter strings
retrieved from the database.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/widget/SimpleCursorTreeAdapter#setViewText(android.widget.TextView,%20java.lang.String)" title="Reference documentation">Java documentation for <code>android.widget.SimpleCursorTreeAdapter.setViewText(android.widget.TextView, java.lang.String)</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 5" />
</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.SimpleCursorTreeAdapter.ThresholdClass" />
<MemberSignature Language="F#" Value="member this.ThresholdClass : nativeint" Usage="Android.Widget.SimpleCursorTreeAdapter.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.SimpleCursorTreeAdapter.ThresholdType" />
<MemberSignature Language="F#" Value="member this.ThresholdType : Type" Usage="Android.Widget.SimpleCursorTreeAdapter.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>
<Member MemberName="ViewBinder">
<MemberSignature Language="C#" Value="public virtual Android.Widget.SimpleCursorTreeAdapter.IViewBinder? ViewBinder { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.Widget.SimpleCursorTreeAdapter/IViewBinder ViewBinder" />
<MemberSignature Language="DocId" Value="P:Android.Widget.SimpleCursorTreeAdapter.ViewBinder" />
<MemberSignature Language="F#" Value="member this.ViewBinder : Android.Widget.SimpleCursorTreeAdapter.IViewBinder with get, set" Usage="Android.Widget.SimpleCursorTreeAdapter.ViewBinder" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getViewBinder", "()Landroid/widget/SimpleCursorTreeAdapter$ViewBinder;", "GetGetViewBinderHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getViewBinder", "()Landroid/widget/SimpleCursorTreeAdapter$ViewBinder;", "GetGetViewBinderHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setViewBinder", "(Landroid/widget/SimpleCursorTreeAdapter$ViewBinder;)V", "GetSetViewBinder_Landroid_widget_SimpleCursorTreeAdapter_ViewBinder_Handler")]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setViewBinder", "(Landroid/widget/SimpleCursorTreeAdapter$ViewBinder;)V", "GetSetViewBinder_Landroid_widget_SimpleCursorTreeAdapter_ViewBinder_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Widget.SimpleCursorTreeAdapter+IViewBinder</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns the <c>ViewBinder</c> used to bind data to views. -or- Sets the binder used to bind data to views.</summary>
<value>a ViewBinder or null if the binder does not exist</value>
<remarks>
<para>Property getter documentation:</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/widget/SimpleCursorTreeAdapter#getViewBinder()" title="Reference documentation">Java documentation for <code>android.widget.SimpleCursorTreeAdapter.getViewBinder()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/widget/SimpleCursorTreeAdapter#setViewBinder(android.widget.ViewBinder)" title="Reference documentation">Java documentation for <code>android.widget.SimpleCursorTreeAdapter.setViewBinder(android.widget.ViewBinder)</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 5" />
<altmember cref="P:Android.Widget.SimpleCursorTreeAdapter.ViewBinder" />
</Docs>
</Member>
</Members>
</Type>