I want to create an application that will one day be launched and not represent the main (instead, user interface) service start. The question is, is the action a remote finish () function, stopping the service?
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.finish();
}
}
source
share