FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
AndroidTutorialForBeginners/MyLocationListener.java at master · Progzizo/AndroidTutorialForBeginners · GitHub
Progzizo
/
AndroidTutorialForBeginners
Public
forked from
hussien89aa/AndroidTutorialForBeginners
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
AndroidTutorialForBeginners
/
MyLocationListener.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
42 lines (33 loc) · 1.28 KB
Breadcrumbs
AndroidTutorialForBeginners
/
MyLocationListener.java
Copy path
File metadata and controls
42 lines (33 loc) · 1.28 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import
android
.
content
.
Context
;
import
android
.
location
.
Location
;
import
android
.
location
.
LocationListener
;
import
android
.
os
.
Bundle
;
import
android
.
widget
.
Toast
;
public
class
MyLocationListener
implements
LocationListener
{
Context
context
;
public
static
Location
location
;
public
MyLocationListener
(
Context
context
){
this
.
context
=
context
;
}
public
void
onLocationChanged
(
Location
location
) {
this
.
location
=
location
;
}
public
void
onStatusChanged
(
String
s
,
int
i
,
Bundle
b
) {
// Toast.makeText(context, "Provider status changed",
// Toast.LENGTH_LONG).show();
}
public
void
onProviderDisabled
(
String
s
) {
Toast
.
makeText
(
context
,
" GPS turned off . you cannot follow your locations"
,
Toast
.
LENGTH_LONG
).
show
();
}
public
void
onProviderEnabled
(
String
s
) {
// SettingSaved.LoadData(context);
Toast
.
makeText
(
context
,
" GPS turned on. you can follow your locations"
,
Toast
.
LENGTH_LONG
).
show
();
}
}
LocationListener
locationListener
=
new
MyLocationListener
();
LocationManager
lm
= (
LocationManager
)
getSystemService
(
Context
.
LOCATION_SERVICE
);
lm
.
requestLocationUpdates
(
LocationManager
.
GPS_PROVIDER
,
35000
,
10
,
this
.
locationListener
);
Back
|
FazBrowse Home
|
New Git URL