forked from hussien89aa/AndroidTutorialForBeginners
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGooglePlayServices.java
More file actions
Latest commit
73 lines (59 loc) · 2.26 KB
/
Copy pathGooglePlayServices.java
File metadata and controls
73 lines (59 loc) · 2.26 KB
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
publicclassGooglePlayServices
implementsGoogleApiClient.ConnectionCallbacks,
GoogleApiClient.OnConnectionFailedListener
{
privatefinalStringTAG = "GooglePlayServices:";
protectedGoogleApiClientmGoogleApiClient;
Contextcontext;
publicGooglePlayServices( Contextcontext) {
this.context=context;
// build the Play Services client object
mGoogleApiClient = newGoogleApiClient.Builder(context)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(LocationServices.API)
.build();
}
@Override
protectedvoidonStart() {
super.onStart();
Log.i(TAG, "onStart: Connecting to Google Play Services");
// Connect to Play Services
GoogleApiAvailabilitygAPI = GoogleApiAvailability.getInstance();
intresultCode = gAPI.isGooglePlayServicesAvailable(this);
if (resultCode != ConnectionResult.SUCCESS) {
gAPI.getErrorDialog(this, resultCode, 1).show();
}
else {
mGoogleApiClient.connect();
}
}
@Override
protectedvoidonStop() {
super.onStop();
if (mGoogleApiClient.isConnected()) {
Log.i(TAG, "onStop: Disconnecting from Google Play Services");
mGoogleApiClient.disconnect();
}
}
/**
* Google Play Services Lifecycle methods
*/
@Override
publicvoidonConnected(BundleconnectionHint) {
Log.i(TAG, "onConnected: Is connected to Google Play Services");
//TODO: we connected
}
@Override
publicvoidonConnectionFailed(ConnectionResultresult) {
//error result
Log.d(TAG, "Connection failed: ConnectionResult.getErrorCode() = " + result.getErrorCode());
}
@Override
publicvoidonConnectionSuspended(intcause) {
Log.d(TAG, "Connection was suspended for some reason");
mGoogleApiClient.connect(); //reconnected
}
}
//TODO: Add play services in Grade
//compile 'com.google.android.gms:play-services:Version'