I have broadcast like this:
private final BroadcastReceiver locationReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
if(intent.getAction().matches(LocationManager.PROVIDERS_CHANGED_ACTION)){
//do stuff
startLocationUpdates();
}
}
};
When the user turns on the gps, locationReceiver should executre the statLocationUpdates(). This is the code inside that method:
protected void startLocationUpdates() {
try
{
LocationManager lm = (LocationManager) getSystemService(LOCATION_SERVICE);
LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient, mLocationRequest, this);
if(!lm.isProviderEnabled(LocationManager.GPS_PROVIDER))
{
buildAlertMessageNoGps();
}
}
catch (SecurityException ex)
{
}
There is a problem with line LocationServices.FusedLocationApi... I cant figure out why. But this is what the log says:
02-28 21:31:40.747 21273-21273/com.theapplabperu.hangover E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.theapplabperu.hangover, PID: 21273
java.lang.RuntimeException: Error receiving broadcast Intent { act=android.location.PROVIDERS_CHANGED flg=0x10 } in com.theapplabperu.hangover.View.Activity.ActivitySplash$11@f6e8393
at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:932)
at android.os.Handler.handleCallback(Handler.java:815)
at android.os.Handler.dispatchMessage(Handler.java:104)
at android.os.Looper.loop(Looper.java:207)
at android.app.ActivityThread.main(ActivityThread.java:5728)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:679)
Caused by: java.lang.IllegalStateException: GoogleApiClient is not connected yet.
I read another post but I didn't get how to solve it yet. Any idea?
UPDATE:
I actually create my googleapiclient in the onCreate method:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
myContext = this;
myActivity = this;
mVisible = true;
if (mGoogleApiClient == null) {
mGoogleApiClient = new GoogleApiClient.Builder(myContext)
.addConnectionCallbacks(ActivitySplash.this)
.addOnConnectionFailedListener(ActivitySplash.this)
.addApi(LocationServices.API)
.build();
}