Skip to content Skip to sidebar Skip to footer

No Enclosing Instance Of The Type Mainactivity Is Accessible In Scope

I have this code, which i want to get GPS latitude and longitude from GPSTracker class But the error show gps=new GPSTracker(MainActivity.this); gps.getLati

Solution 1:

you can only use MainActivity.this if BootComplete is a nested class inside MainActivity.

as your GPSTracker only needs a context, you can do

gps = new GPSTracker(context);

Solution 2:

Try this mate :

MainActivity mainAct = new MainActivity();

mainAct.YouClass = mainAct.newYourClass();

Hope it helps.

Post a Comment for "No Enclosing Instance Of The Type Mainactivity Is Accessible In Scope"