forked from hussien89aa/AndroidTutorialForBeginners
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GooglePlayServices.java
73 lines (59 loc) · 2.26 KB
/
GooglePlayServices.java
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
public class GooglePlayServices
implements GoogleApiClient.ConnectionCallbacks,
GoogleApiClient.OnConnectionFailedListener
{
private final String TAG = "GooglePlayServices:";
protected GoogleApiClient mGoogleApiClient;
Context context;
public GooglePlayServices( Context context) {
this.context=context;
// build the Play Services client object
mGoogleApiClient = new GoogleApiClient.Builder(context)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(LocationServices.API)
.build();
}
@Override
protected void onStart() {
super.onStart();
Log.i(TAG, "onStart: Connecting to Google Play Services");
// Connect to Play Services
GoogleApiAvailability gAPI = GoogleApiAvailability.getInstance();
int resultCode = gAPI.isGooglePlayServicesAvailable(this);
if (resultCode != ConnectionResult.SUCCESS) {
gAPI.getErrorDialog(this, resultCode, 1).show();
}
else {
mGoogleApiClient.connect();
}
}
@Override
protected void onStop() {
super.onStop();
if (mGoogleApiClient.isConnected()) {
Log.i(TAG, "onStop: Disconnecting from Google Play Services");
mGoogleApiClient.disconnect();
}
}
/**
* Google Play Services Lifecycle methods
*/
@Override
public void onConnected(Bundle connectionHint) {
Log.i(TAG, "onConnected: Is connected to Google Play Services");
//TODO: we connected
}
@Override
public void onConnectionFailed(ConnectionResult result) {
//error result
Log.d(TAG, "Connection failed: ConnectionResult.getErrorCode() = " + result.getErrorCode());
}
@Override
public void onConnectionSuspended(int cause) {
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'