Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialHay Abadi
2,625 Pointscopailer ERROR when creating onStart and onStop.
hey, i have copiler error when i tried to override the onStart and onStop Methods. this is the error: "
./MainActivity.java:47: error: reached end of file while parsing } ^
./MainActivity.java:32: error: onStart() in MainActivity cannot override onStart() in Activity protected void onStart() { ^
attempting to assign weaker access privileges; was public ./MainActivity.java:39: error: onStop() in MainActivity cannot override onStop() in Activity protected void onStop() { ^
attempting to assign weaker access privileges; was public 3 errors"
this is the MainActivity:
public class MainActivity extends Activity {
int latitude;
int longitude;
private boolean mBound = false;
private ServiceConnection serviceConnection = new ServiceConnection(){
@Override
public void onServiceConnected(ComponentName name, IBinder service){
mBound = true;
}
@Override
public void onServiceDisconnected(ComponentName name){
mBound = false;
}
};
@Override
public void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.activity_main);
Button updateLocationButton = (Button) findViewById(R.id.update_button);
updateLocationButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v){
}
});
}
@Override
protected void onStart() {
super.onStart();
Intent intent = new Intent(this,GeolocationService.class);
bindService(intent,serviceConnection,Context.BIND_AUTO_CREATE);
}
@Override
protected void onStop() {
super.onStop();
if(mBound){
unbindService(serviceConnection);
mBound = false;
}
}
public class MainActivity extends Activity {
int latitude;
int longitude;
private boolean mBound = false;
private ServiceConnection serviceConnection = new ServiceConnection(){
@Override
public void onServiceConnected(ComponentName name, IBinder service){
mBound = true;
}
@Override
public void onServiceDisconnected(ComponentName name){
mBound = false;
}
};
@Override
public void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.activity_main);
Button updateLocationButton = (Button) findViewById(R.id.update_button);
updateLocationButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v){
}
});
}
@Override
protected void onStart(){
super.onStart();
Intent intent = new Intent(this,GeolocationService.class);
bindService(intent,serviceConnection,Context.BIND_AUTO_CREATE);
}
@Override
protected void onStop(){
super.onStop();
if(mBound){
unbindService(serviceConnection);
mBound = false;
}
}
}
public class MainActivity extends Activity {
int latitude;
int longitude;
@Override
public void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.activity_main);
Button updateLocationButton = (Button) findViewById(R.id.update_button);
updateLocationButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v){
}
});
}
}
1 Answer
Kourosh Raeen
23,733 PointsChange protected to public. Also, mBound should be isBound. I also had to get rid of the private modifier when defining isBound.