Slide 15
Slide 15 text
IntentService
p
u
b
l
i
c c
l
a
s
s R
S
S
P
u
l
l
S
e
r
v
i
c
e e
x
t
e
n
d
s I
n
t
e
n
t
S
e
r
v
i
c
e {
@
O
v
e
r
r
i
d
e
p
r
o
t
e
c
t
e
d v
o
i
d o
n
H
a
n
d
l
e
I
n
t
e
n
t
(
I
n
t
e
n
t w
o
r
k
I
n
t
e
n
t
) {
/
/ G
e
t
s d
a
t
a f
r
o
m t
h
e i
n
c
o
m
i
n
g I
n
t
e
n
t
S
t
r
i
n
g d
a
t
a
S
t
r
i
n
g = w
o
r
k
I
n
t
e
n
t
.
g
e
t
D
a
t
a
S
t
r
i
n
g
(
)
;
.
.
.
/
/ D
o w
o
r
k h
e
r
e
, b
a
s
e
d o
n t
h
e c
o
n
t
e
n
t
s o
f d
a
t
a
S
t
r
i
n
g
.
.
.
}
}
J
A
V
A
developer.android.com/training/run-background-service/create-service.html
/