This repository has been archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Service.xml
1755 lines (1745 loc) · 117 KB
/
Service.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
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Type Name="Service" FullName="Android.App.Service">
<TypeSignature Language="C#" Value="public abstract class Service : Android.Content.ContextWrapper, Android.Content.IComponentCallbacks2, IDisposable, Java.Interop.IJavaPeerable" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit Service extends Android.Content.ContextWrapper implements class Android.Content.IComponentCallbacks, class Android.Content.IComponentCallbacks2, class Android.Runtime.IJavaObject, class Java.Interop.IJavaPeerable, class System.IDisposable" />
<TypeSignature Language="DocId" Value="T:Android.App.Service" />
<TypeSignature Language="F#" Value="type Service = class
 inherit ContextWrapper
 interface IComponentCallbacks
 interface IJavaObject
 interface IDisposable
 interface IJavaPeerable
 interface IComponentCallbacks2" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Android.Content.ContextWrapper</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>Android.Content.IComponentCallbacks</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Android.Content.IComponentCallbacks2</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Android.Runtime.IJavaObject</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Java.Interop.IJavaPeerable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IDisposable</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("android/app/Service", DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/app/Service", DoNotGenerateAcw=true)>]</AttributeName>
</Attribute>
</Attributes>
<Docs since="1">
<summary>A Service is an application component representing either an application's desire
to perform a longer-running operation while not interacting with the user
or to supply functionality for other applications to use.</summary>
<remarks>
<para>A Service is an application component representing either an application's desire
to perform a longer-running operation while not interacting with the user
or to supply functionality for other applications to use. Each service
class must have a corresponding
<c>android.R.styleable#AndroidManifestService &lt;service&gt;</c>
declaration in its package's <c>AndroidManifest.xml</c>. Services
can be started with
<c>android.content.Context#startService Context.startService()</c> and
<c>android.content.Context#bindService Context.bindService()</c>.</para>
<para>Note that services, like other application objects, run in the main
thread of their hosting process. This means that, if your service is going
to do any CPU intensive (such as MP3 playback) or blocking (such as
networking) operations, it should spawn its own thread in which to do that
work. More information on this can be found in
<see href="https://developer.android.com/guide/topics/fundamentals/processes-and-threads.html">Processes and
Threads</see>. The <c>androidx.core.app.JobIntentService</c> class is available
as a standard implementation of Service that has its own thread where it
schedules its work to be done.</para>
<para>Topics covered here:
<ol>
<li>What is a Service?<li>Service Lifecycle<li>Permissions<li>Process Lifecycle<li>Local Service Sample<li>Remote Messenger Service Sample</ol>
<div class="special reference">
<h3>Developer Guides</h3></para>
<para>For a detailed discussion about how to create services, read the
<see href="https://developer.android.com/guide/topics/fundamentals/services.html">Services</see> developer guide.</para>
<para></div>
"WhatIsAService"><h3>What is a Service?</h3></para>
<para>Most confusion about the Service class actually revolves around what
it is <em>not</em>:</para>
<para><ul>
<li> A Service is <b>not</b> a separate process. The Service object itself
does not imply it is running in its own process; unless otherwise specified,
it runs in the same process as the application it is part of.
<li> A Service is <b>not</b> a thread. It is not a means itself to do work off
of the main thread (to avoid Application Not Responding errors).
</ul></para>
<para>Thus a Service itself is actually very simple, providing two main features:</para>
<para><ul>
<li>A facility for the application to tell the system <em>about</em>
something it wants to be doing in the background (even when the user is not
directly interacting with the application). This corresponds to calls to
<c>android.content.Context#startService Context.startService()</c>, which
ask the system to schedule work for the service, to be run until the service
or someone else explicitly stop it.
<li>A facility for an application to expose some of its functionality to
other applications. This corresponds to calls to
<c>android.content.Context#bindService Context.bindService()</c>, which
allows a long-standing connection to be made to the service in order to
interact with it.
</ul></para>
<para>When a Service component is actually created, for either of these reasons,
all that the system actually does is instantiate the component
and call its <c>#onCreate</c> and any other appropriate callbacks on the
main thread. It is up to the Service to implement these with the appropriate
behavior, such as creating a secondary thread in which it does its work.</para>
<para>Note that because Service itself is so simple, you can make your
interaction with it as simple or complicated as you want: from treating it
as a local Java object that you make direct method calls on (as illustrated
by Local Service Sample), to providing
a full remoteable interface using AIDL.</para>
<para>"ServiceLifecycle"><h3>Service Lifecycle</h3></para>
<para>There are two reasons that a service can be run by the system. If someone
calls <c>android.content.Context#startService Context.startService()</c> then the system will
retrieve the service (creating it and calling its <c>#onCreate</c> method
if needed) and then call its <c>#onStartCommand</c> method with the
arguments supplied by the client. The service will at this point continue
running until <c>android.content.Context#stopService Context.stopService()</c> or
<c>#stopSelf()</c> is called. Note that multiple calls to
Context.startService() do not nest (though they do result in multiple corresponding
calls to onStartCommand()), so no matter how many times it is started a service
will be stopped once Context.stopService() or stopSelf() is called; however,
services can use their <c>#stopSelf(int)</c> method to ensure the service is
not stopped until started intents have been processed.</para>
<para>For started services, there are two additional major modes of operation
they can decide to run in, depending on the value they return from
onStartCommand(): <c>#START_STICKY</c> is used for services that are
explicitly started and stopped as needed, while <c>#START_NOT_STICKY</c>
or <c>#START_REDELIVER_INTENT</c> are used for services that should only
remain running while processing any commands sent to them. See the linked
documentation for more detail on the semantics.</para>
<para>Clients can also use <c>android.content.Context#bindService Context.bindService()</c> to
obtain a persistent connection to a service. This likewise creates the
service if it is not already running (calling <c>#onCreate</c> while
doing so), but does not call onStartCommand(). The client will receive the
<c>android.os.IBinder</c> object that the service returns from its
<c>#onBind</c> method, allowing the client to then make calls back
to the service. The service will remain running as long as the connection
is established (whether or not the client retains a reference on the
service's IBinder). Usually the IBinder returned is for a complex
interface that has been <see href="https://developer.android.com/guide/components/aidl.html">written
in aidl</see>.</para>
<para>A service can be both started and have connections bound to it. In such
a case, the system will keep the service running as long as either it is
started <em>or</em> there are one or more connections to it with the
<c>android.content.Context#BIND_AUTO_CREATE Context.BIND_AUTO_CREATE</c>
flag. Once neither
of these situations hold, the service's <c>#onDestroy</c> method is called
and the service is effectively terminated. All cleanup (stopping threads,
unregistering receivers) should be complete upon returning from onDestroy().
"Permissions"><h3>Permissions</h3></para>
<para>Global access to a service can be enforced when it is declared in its
manifest's <c>android.R.styleable#AndroidManifestService &lt;service&gt;</c>
tag. By doing so, other applications will need to declare a corresponding
<c>android.R.styleable#AndroidManifestUsesPermission &lt;uses-permission&gt;</c>
element in their own manifest to be able to start, stop, or bind to
the service.</para>
<para>As of <c>android.os.Build.VERSION_CODES#GINGERBREAD</c>, when using
<c>Context#startService(Intent) Context.startService(Intent)</c>, you can
also set <c>Intent#FLAG_GRANT_READ_URI_PERMISSION
Intent.FLAG_GRANT_READ_URI_PERMISSION</c> and/or <c>Intent#FLAG_GRANT_WRITE_URI_PERMISSION
Intent.FLAG_GRANT_WRITE_URI_PERMISSION</c> on the Intent. This will grant the
Service temporary access to the specific URIs in the Intent. Access will
remain until the Service has called <c>#stopSelf(int)</c> for that start
command or a later one, or until the Service has been completely stopped.
This works for granting access to the other apps that have not requested
the permission protecting the Service, or even when the Service is not
exported at all.</para>
<para>In addition, a service can protect individual IPC calls into it with
permissions, by calling the
<c>#checkCallingPermission</c>
method before executing the implementation of that call.</para>
<para>See the <see href="https://developer.android.com/guide/topics/security/security.html">Security and Permissions</see>
document for more information on permissions and security in general.
"ProcessLifecycle"><h3>Process Lifecycle</h3></para>
<para>The Android system will attempt to keep the process hosting a service
around as long as the service has been started or has clients bound to it.
When running low on memory and needing to kill existing processes, the
priority of a process hosting the service will be the higher of the
following possibilities:
<ul>
<li></para>
<para>If the service is currently executing code in its
<c>#onCreate onCreate()</c>, <c>#onStartCommand onStartCommand()</c>,
or <c>#onDestroy onDestroy()</c> methods, then the hosting process will
be a foreground process to ensure this code can execute without
being killed.
<li></para>
<para>If the service has been started, then its hosting process is considered
to be less important than any processes that are currently visible to the
user on-screen, but more important than any process not visible. Because
only a few processes are generally visible to the user, this means that
the service should not be killed except in low memory conditions. However, since
the user is not directly aware of a background service, in that state it <em>is</em>
considered a valid candidate to kill, and you should be prepared for this to
happen. In particular, long-running services will be increasingly likely to
kill and are guaranteed to be killed (and restarted if appropriate) if they
remain started long enough.
<li></para>
<para>If there are clients bound to the service, then the service's hosting
process is never less important than the most important client. That is,
if one of its clients is visible to the user, then the service itself is
considered to be visible. The way a client's importance impacts the service's
importance can be adjusted through <c>Context#BIND_ABOVE_CLIENT</c>,
<c>Context#BIND_ALLOW_OOM_MANAGEMENT</c>, <c>Context#BIND_WAIVE_PRIORITY</c>,
<c>Context#BIND_IMPORTANT</c>, and <c>Context#BIND_ADJUST_WITH_ACTIVITY</c>.
<li></para>
<para>A started service can use the <c>#startForeground(int, Notification)</c>
API to put the service in a foreground state, where the system considers
it to be something the user is actively aware of and thus not a candidate
for killing when low on memory. (It is still theoretically possible for
the service to be killed under extreme memory pressure from the current
foreground application, but in practice this should not be a concern.)
</ul></para>
<para>Note this means that most of the time your service is running, it may
be killed by the system if it is under heavy memory pressure. If this
happens, the system will later try to restart the service. An important
consequence of this is that if you implement <c>#onStartCommand onStartCommand()</c>
to schedule work to be done asynchronously or in another thread, then you
may want to use <c>#START_FLAG_REDELIVERY</c> to have the system
re-deliver an Intent for you so that it does not get lost if your service
is killed while processing it.</para>
<para>Other application components running in the same process as the service
(such as an <c>android.app.Activity</c>) can, of course, increase the
importance of the overall
process beyond just the importance of the service itself.
"LocalServiceSample"><h3>Local Service Sample</h3></para>
<para>One of the most common uses of a Service is as a secondary component
running alongside other parts of an application, in the same process as
the rest of the components. All components of an .apk run in the same
process unless explicitly stated otherwise, so this is a typical situation.</para>
<para>When used in this way, by assuming the
components are in the same process, you can greatly simplify the interaction
between them: clients of the service can simply cast the IBinder they
receive from it to a concrete class published by the service.</para>
<para>An example of this use of a Service is shown here. First is the Service
itself, publishing a custom class when bound:
{</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Service" title="Reference documentation">Java documentation for <code>android.app.Service</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="public Service ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Service.#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>
</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=".ctor">
<MemberSignature Language="C#" Value="protected Service (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.App.Service.#ctor(System.IntPtr,Android.Runtime.JniHandleOwnership)" />
<MemberSignature Language="F#" Value="new Android.App.Service : nativeint * Android.Runtime.JniHandleOwnership -> Android.App.Service" Usage="new Android.App.Service (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="Application">
<MemberSignature Language="C#" Value="public Android.App.Application? Application { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.App.Application Application" />
<MemberSignature Language="DocId" Value="P:Android.App.Service.Application" />
<MemberSignature Language="F#" Value="member this.Application : Android.App.Application" Usage="Android.App.Service.Application" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getApplication", "()Landroid/app/Application;", "")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getApplication", "()Landroid/app/Application;", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.Application</ReturnType>
</ReturnValue>
<Docs>
<summary>Return the application that owns this service.</summary>
<value>To be added.</value>
<remarks>
<para>Return the application that owns this service.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Service#getApplication()" title="Reference documentation">Java documentation for <code>android.app.Service.getApplication()</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="Dump">
<MemberSignature Language="C#" Value="protected virtual void Dump (Java.IO.FileDescriptor? fd, Java.IO.PrintWriter? writer, string[]? args);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void Dump(class Java.IO.FileDescriptor fd, class Java.IO.PrintWriter writer, string[] args) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Service.Dump(Java.IO.FileDescriptor,Java.IO.PrintWriter,System.String[])" />
<MemberSignature Language="F#" Value="abstract member Dump : Java.IO.FileDescriptor * Java.IO.PrintWriter * string[] -> unit
override this.Dump : Java.IO.FileDescriptor * Java.IO.PrintWriter * string[] -> unit" Usage="service.Dump (fd, writer, args)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("dump", "(Ljava/io/FileDescriptor;Ljava/io/PrintWriter;[Ljava/lang/String;)V", "GetDump_Ljava_io_FileDescriptor_Ljava_io_PrintWriter_arrayLjava_lang_String_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("dump", "(Ljava/io/FileDescriptor;Ljava/io/PrintWriter;[Ljava/lang/String;)V", "GetDump_Ljava_io_FileDescriptor_Ljava_io_PrintWriter_arrayLjava_lang_String_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="fd" Type="Java.IO.FileDescriptor" />
<Parameter Name="writer" Type="Java.IO.PrintWriter" />
<Parameter Name="args" Type="System.String[]" />
</Parameters>
<Docs>
<param name="fd">The raw file descriptor that the dump is being sent to.</param>
<param name="writer">The PrintWriter to which you should dump your state. This will be
closed for you after you return.</param>
<param name="args">additional arguments to the dump request.</param>
<summary>Print the Service's state into the given stream.</summary>
<remarks>
<para>Print the Service's state into the given stream. This gets invoked if
you run "adb shell dumpsys activity service &lt;yourservicename&gt;"
(note that for this command to work, the service must be running, and
you must specify a fully-qualified service name).
This is distinct from "dumpsys &lt;servicename&gt;", which only works for
named system services and which invokes the <c>IBinder#dump</c> method
on the <c>IBinder</c> interface registered with ServiceManager.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Service#dump(java.io.FileDescriptor,%20java.io.PrintWriter,%20java.lang.String[])" title="Reference documentation">Java documentation for <code>android.app.Service.dump(java.io.FileDescriptor, java.io.PrintWriter, 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="ForegroundServiceType">
<MemberSignature Language="C#" Value="public Android.Content.PM.ForegroundService ForegroundServiceType { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype Android.Content.PM.ForegroundService ForegroundServiceType" />
<MemberSignature Language="DocId" Value="P:Android.App.Service.ForegroundServiceType" />
<MemberSignature Language="F#" Value="member this.ForegroundServiceType : Android.Content.PM.ForegroundService" Usage="Android.App.Service.ForegroundServiceType" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android29.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android29.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getForegroundServiceType", "()I", "", ApiSince=29)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getForegroundServiceType", "()I", "", ApiSince=29)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Content.PM.ForegroundService</ReturnType>
</ReturnValue>
<Docs>
<summary>If the service has become a foreground service by calling
<c>#startForeground(int, Notification)</c>
or <c>#startForeground(int, Notification, int)</c>, <c>#getForegroundServiceType()</c>
returns the current foreground service type.</summary>
<value>current foreground service type flags.</value>
<remarks>
<para>If the service has become a foreground service by calling
<c>#startForeground(int, Notification)</c>
or <c>#startForeground(int, Notification, int)</c>, <c>#getForegroundServiceType()</c>
returns the current foreground service type.</para>
<para>If there is no foregroundServiceType specified
in manifest, <c>ServiceInfo#FOREGROUND_SERVICE_TYPE_NONE</c> is returned.</para>
<para>If the service is not a foreground service,
<c>ServiceInfo#FOREGROUND_SERVICE_TYPE_NONE</c> is returned.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Service#getForegroundServiceType()" title="Reference documentation">Java documentation for <code>android.app.Service.getForegroundServiceType()</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>
</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.App.Service.JniPeerMembers" />
<MemberSignature Language="F#" Value="member this.JniPeerMembers : Java.Interop.JniPeerMembers" Usage="Android.App.Service.JniPeerMembers" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:Java.Interop.IJavaPeerable.JniPeerMembers</InterfaceMember>
</Implements>
<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="OnBind">
<MemberSignature Language="C#" Value="public abstract Android.OS.IBinder? OnBind (Android.Content.Intent? intent);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Android.OS.IBinder OnBind(class Android.Content.Intent intent) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Service.OnBind(Android.Content.Intent)" />
<MemberSignature Language="F#" Value="abstract member OnBind : Android.Content.Intent -> Android.OS.IBinder" Usage="service.OnBind intent" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onBind", "(Landroid/content/Intent;)Landroid/os/IBinder;", "GetOnBind_Landroid_content_Intent_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onBind", "(Landroid/content/Intent;)Landroid/os/IBinder;", "GetOnBind_Landroid_content_Intent_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.OS.IBinder</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="intent" Type="Android.Content.Intent" />
</Parameters>
<Docs>
<param name="intent">The Intent that was used to bind to this service,
as given to <c>android.content.Context#bindService
Context.bindService</c>. Note that any extras that were included with
the Intent at that point will <em>not</em> be seen here.</param>
<summary>Return the communication channel to the service.</summary>
<returns>Return an IBinder through which clients can call on to the
service.</returns>
<remarks>
<para>Return the communication channel to the service. May return null if
clients can not bind to the service. The returned
<c>android.os.IBinder</c> is usually for a complex interface
that has been <see href="https://developer.android.com/guide/components/aidl.html">described using
aidl</see>.</para>
<para><em>Note that unlike other application components, calls on to the
IBinder interface returned here may not happen on the main thread
of the process</em>. More information about the main thread can be found in
<see href="https://developer.android.com/guide/topics/fundamentals/processes-and-threads.html">Processes and
Threads</see>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Service#onBind(android.content.Intent)" title="Reference documentation">Java documentation for <code>android.app.Service.onBind(android.content.Intent)</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="OnConfigurationChanged">
<MemberSignature Language="C#" Value="public virtual void OnConfigurationChanged (Android.Content.Res.Configuration? newConfig);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void OnConfigurationChanged(class Android.Content.Res.Configuration newConfig) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Service.OnConfigurationChanged(Android.Content.Res.Configuration)" />
<MemberSignature Language="F#" Value="abstract member OnConfigurationChanged : Android.Content.Res.Configuration -> unit
override this.OnConfigurationChanged : Android.Content.Res.Configuration -> unit" Usage="service.OnConfigurationChanged newConfig" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Android.Content.IComponentCallbacks.OnConfigurationChanged(Android.Content.Res.Configuration)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onConfigurationChanged", "(Landroid/content/res/Configuration;)V", "GetOnConfigurationChanged_Landroid_content_res_Configuration_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onConfigurationChanged", "(Landroid/content/res/Configuration;)V", "GetOnConfigurationChanged_Landroid_content_res_Configuration_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="newConfig" Type="Android.Content.Res.Configuration" />
</Parameters>
<Docs>
<param name="newConfig">The new device configuration.
</param>
<summary>Called by the system when the device configuration changes while your
component is running.</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="OnCreate">
<MemberSignature Language="C#" Value="public virtual void OnCreate ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void OnCreate() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Service.OnCreate" />
<MemberSignature Language="F#" Value="abstract member OnCreate : unit -> unit
override this.OnCreate : unit -> unit" Usage="service.OnCreate " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onCreate", "()V", "GetOnCreateHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onCreate", "()V", "GetOnCreateHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Called by the system when the service is first created.</summary>
<remarks>
<para>Called by the system when the service is first created. Do not call this method directly.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Service#onCreate()" title="Reference documentation">Java documentation for <code>android.app.Service.onCreate()</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="OnDestroy">
<MemberSignature Language="C#" Value="public virtual void OnDestroy ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void OnDestroy() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Service.OnDestroy" />
<MemberSignature Language="F#" Value="abstract member OnDestroy : unit -> unit
override this.OnDestroy : unit -> unit" Usage="service.OnDestroy " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onDestroy", "()V", "GetOnDestroyHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onDestroy", "()V", "GetOnDestroyHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Called by the system to notify a Service that it is no longer used and is being removed.</summary>
<remarks>
<para>Called by the system to notify a Service that it is no longer used and is being removed. The
service should clean up any resources it holds (threads, registered
receivers, etc) at this point. Upon return, there will be no more calls
in to this Service object and it is effectively dead. Do not call this method directly.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Service#onDestroy()" title="Reference documentation">Java documentation for <code>android.app.Service.onDestroy()</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="OnLowMemory">
<MemberSignature Language="C#" Value="public virtual void OnLowMemory ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void OnLowMemory() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Service.OnLowMemory" />
<MemberSignature Language="F#" Value="abstract member OnLowMemory : unit -> unit
override this.OnLowMemory : unit -> unit" Usage="service.OnLowMemory " />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Android.Content.IComponentCallbacks.OnLowMemory</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onLowMemory", "()V", "GetOnLowMemoryHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onLowMemory", "()V", "GetOnLowMemoryHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>This is called when the overall system is running low on memory, and
actively running processes should trim their memory usage.</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="OnRebind">
<MemberSignature Language="C#" Value="public virtual void OnRebind (Android.Content.Intent? intent);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void OnRebind(class Android.Content.Intent intent) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Service.OnRebind(Android.Content.Intent)" />
<MemberSignature Language="F#" Value="abstract member OnRebind : Android.Content.Intent -> unit
override this.OnRebind : Android.Content.Intent -> unit" Usage="service.OnRebind intent" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onRebind", "(Landroid/content/Intent;)V", "GetOnRebind_Landroid_content_Intent_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onRebind", "(Landroid/content/Intent;)V", "GetOnRebind_Landroid_content_Intent_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="intent" Type="Android.Content.Intent" />
</Parameters>
<Docs>
<param name="intent">The Intent that was used to bind to this service,
as given to <c>android.content.Context#bindService
Context.bindService</c>. Note that any extras that were included with
the Intent at that point will <em>not</em> be seen here.</param>
<summary>Called when new clients have connected to the service, after it had
previously been notified that all had disconnected in its
<c>#onUnbind</c>.</summary>
<remarks>
<para>Called when new clients have connected to the service, after it had
previously been notified that all had disconnected in its
<c>#onUnbind</c>. This will only be called if the implementation
of <c>#onUnbind</c> was overridden to return true.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Service#onRebind(android.content.Intent)" title="Reference documentation">Java documentation for <code>android.app.Service.onRebind(android.content.Intent)</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="OnStart">
<MemberSignature Language="C#" Value="public virtual void OnStart (Android.Content.Intent? intent, int startId);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void OnStart(class Android.Content.Intent intent, int32 startId) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Service.OnStart(Android.Content.Intent,System.Int32)" />
<MemberSignature Language="F#" Value="abstract member OnStart : Android.Content.Intent * int -> unit
override this.OnStart : Android.Content.Intent * int -> unit" Usage="service.OnStart (intent, startId)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onStart", "(Landroid/content/Intent;I)V", "GetOnStart_Landroid_content_Intent_IHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onStart", "(Landroid/content/Intent;I)V", "GetOnStart_Landroid_content_Intent_IHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("deprecated")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("deprecated")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="intent" Type="Android.Content.Intent" />
<Parameter Name="startId" Type="System.Int32" />
</Parameters>
<Docs>
<param name="intent">To be added.</param>
<param name="startId">To be added.</param>
<summary>This member is deprecated.</summary>
<remarks>
<para>This member is deprecated. Implement <c>#onStartCommand(Intent, int, int)</c> instead.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Service#onStart(android.content.Intent,%20int)" title="Reference documentation">Java documentation for <code>android.app.Service.onStart(android.content.Intent, 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="OnStartCommand">
<MemberSignature Language="C#" Value="public virtual Android.App.StartCommandResult OnStartCommand (Android.Content.Intent? intent, Android.App.StartCommandFlags flags, int startId);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance valuetype Android.App.StartCommandResult OnStartCommand(class Android.Content.Intent intent, valuetype Android.App.StartCommandFlags flags, int32 startId) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Service.OnStartCommand(Android.Content.Intent,Android.App.StartCommandFlags,System.Int32)" />
<MemberSignature Language="F#" Value="abstract member OnStartCommand : Android.Content.Intent * Android.App.StartCommandFlags * int -> Android.App.StartCommandResult
override this.OnStartCommand : Android.Content.Intent * Android.App.StartCommandFlags * int -> Android.App.StartCommandResult" Usage="service.OnStartCommand (intent, flags, startId)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onStartCommand", "(Landroid/content/Intent;II)I", "GetOnStartCommand_Landroid_content_Intent_IIHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onStartCommand", "(Landroid/content/Intent;II)I", "GetOnStartCommand_Landroid_content_Intent_IIHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.StartCommandResult</ReturnType>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.GeneratedEnum]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.GeneratedEnum>]</AttributeName>
</Attribute>
</Attributes>
</ReturnValue>
<Parameters>
<Parameter Name="intent" Type="Android.Content.Intent" />
<Parameter Name="flags" Type="Android.App.StartCommandFlags">
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.GeneratedEnum]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.GeneratedEnum>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
<Parameter Name="startId" Type="System.Int32" />
</Parameters>
<Docs>
<param name="intent">The Intent supplied to <c>android.content.Context#startService</c>,
as given. This may be null if the service is being restarted after
its process has gone away, and it had previously returned anything
except <c>#START_STICKY_COMPATIBILITY</c>.</param>
<param name="flags">Additional data about this start request.</param>
<param name="startId">A unique integer representing this specific request to
start. Use with <c>#stopSelfResult(int)</c>.</param>
<summary>Called by the system every time a client explicitly starts the service by calling
<c>android.content.Context#startService</c>, providing the arguments it supplied and a
unique integer token representing the start request.</summary>
<returns>The return value indicates what semantics the system should
use for the service's current started state. It may be one of the
constants associated with the <c>#START_CONTINUATION_MASK</c> bits.</returns>
<remarks>
<para>Called by the system every time a client explicitly starts the service by calling
<c>android.content.Context#startService</c>, providing the arguments it supplied and a
unique integer token representing the start request. Do not call this method directly.</para>
<para>For backwards compatibility, the default implementation calls
<c>#onStart</c> and returns either <c>#START_STICKY</c>
or <c>#START_STICKY_COMPATIBILITY</c>.
<p class="caution">Note that the system calls this on your
service's main thread. A service's main thread is the same
thread where UI operations take place for Activities running in the
same process. You should always avoid stalling the main
thread's event loop. When doing long-running operations,
network calls, or heavy disk I/O, you should kick off a new
thread, or use <c>android.os.AsyncTask</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Service#onStartCommand(android.content.Intent,%20int,%20int)" title="Reference documentation">Java documentation for <code>android.app.Service.onStartCommand(android.content.Intent, int, 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 5" />
<altmember cref="M:Android.App.Service.StopSelfResult(System.Int32)" />
</Docs>
</Member>
<Member MemberName="OnTaskRemoved">
<MemberSignature Language="C#" Value="public virtual void OnTaskRemoved (Android.Content.Intent? rootIntent);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void OnTaskRemoved(class Android.Content.Intent rootIntent) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Service.OnTaskRemoved(Android.Content.Intent)" />
<MemberSignature Language="F#" Value="abstract member OnTaskRemoved : Android.Content.Intent -> unit
override this.OnTaskRemoved : Android.Content.Intent -> unit" Usage="service.OnTaskRemoved rootIntent" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onTaskRemoved", "(Landroid/content/Intent;)V", "GetOnTaskRemoved_Landroid_content_Intent_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onTaskRemoved", "(Landroid/content/Intent;)V", "GetOnTaskRemoved_Landroid_content_Intent_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rootIntent" Type="Android.Content.Intent" />
</Parameters>
<Docs>
<param name="rootIntent">The original root Intent that was used to launch
the task that is being removed.</param>
<summary>This is called if the service is currently running and the user has
removed a task that comes from the service's application.</summary>
<remarks>
<para>This is called if the service is currently running and the user has
removed a task that comes from the service's application. If you have
set <c>android.content.pm.ServiceInfo#FLAG_STOP_WITH_TASK ServiceInfo.FLAG_STOP_WITH_TASK</c>
then you will not receive this callback; instead, the service will simply
be stopped.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Service#onTaskRemoved(android.content.Intent)" title="Reference documentation">Java documentation for <code>android.app.Service.onTaskRemoved(android.content.Intent)</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="OnTimeout">
<MemberSignature Language="C#" Value="public virtual void OnTimeout (int startId);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void OnTimeout(int32 startId) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Service.OnTimeout(System.Int32)" />
<MemberSignature Language="F#" Value="abstract member OnTimeout : int -> unit
override this.OnTimeout : int -> unit" Usage="service.OnTimeout startId" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onTimeout", "(I)V", "GetOnTimeout_IHandler", ApiSince=34)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onTimeout", "(I)V", "GetOnTimeout_IHandler", ApiSince=34)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android34.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android34.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="startId" Type="System.Int32" />
</Parameters>
<Docs>
<param name="startId">the startId passed to <c>#onStartCommand(Intent, int, int)</c> when
the service started.</param>
<summary>Callback called on timeout for <c>ServiceInfo#FOREGROUND_SERVICE_TYPE_SHORT_SERVICE</c>.</summary>
<remarks>
<para>Callback called on timeout for <c>ServiceInfo#FOREGROUND_SERVICE_TYPE_SHORT_SERVICE</c>.
See <c>ServiceInfo#FOREGROUND_SERVICE_TYPE_SHORT_SERVICE</c> for more details.</para>
<para>If the foreground service of type
<c>ServiceInfo#FOREGROUND_SERVICE_TYPE_SHORT_SERVICE</c>
doesn't finish even after it's timed out,
the app will be declared an ANR after a short grace period of several seconds.</para>
<para>Note, even though
<c>ServiceInfo#FOREGROUND_SERVICE_TYPE_SHORT_SERVICE</c>
was added
on Android version <c>android.os.Build.VERSION_CODES#UPSIDE_DOWN_CAKE</c>,
it can be also used on
on prior android versions (just like other new foreground service types can be used).
However, because <c>android.app.Service#onTimeout(int)</c> did not exist on prior versions,
it will never called on such versions.
Because of this, developers must make sure to stop the foreground service even if
<c>android.app.Service#onTimeout(int)</c> is not called on such versions.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Service#onTimeout(int)" title="Reference documentation">Java documentation for <code>android.app.Service.onTimeout(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>
</Docs>
</Member>
<Member MemberName="OnTrimMemory">
<MemberSignature Language="C#" Value="public virtual void OnTrimMemory (Android.Content.TrimMemory level);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void OnTrimMemory(valuetype Android.Content.TrimMemory level) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Service.OnTrimMemory(Android.Content.TrimMemory)" />
<MemberSignature Language="F#" Value="abstract member OnTrimMemory : Android.Content.TrimMemory -> unit
override this.OnTrimMemory : Android.Content.TrimMemory -> unit" Usage="service.OnTrimMemory level" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:Android.Content.IComponentCallbacks2.OnTrimMemory(Android.Content.TrimMemory)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onTrimMemory", "(I)V", "GetOnTrimMemory_IHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onTrimMemory", "(I)V", "GetOnTrimMemory_IHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="level" Type="Android.Content.TrimMemory">
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.GeneratedEnum]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.GeneratedEnum>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="level">The context of the trim, giving a hint of the amount of
trimming the application may like to perform. May be
<see cref="F:Android.Content.ComponentCallbacks2.TrimMemoryComplete" />, <see cref="F:Android.Content.ComponentCallbacks2.TrimMemoryModerate" />,
<see cref="F:Android.Content.ComponentCallbacks2.TrimMemoryBackground" />, <see cref="F:Android.Content.ComponentCallbacks2.TrimMemoryUiHidden" />,
<see cref="F:Android.Content.ComponentCallbacks2.TrimMemoryRunningCritical" />, <see cref="F:Android.Content.ComponentCallbacks2.TrimMemoryRunningLow" />,
or <see cref="F:Android.Content.ComponentCallbacks2.TrimMemoryRunningModerate" />.
</param>
<summary>Called when the operating system has determined that it is a good
time for a process to trim unneeded memory from its process.</summary>
<remarks>