How can I stop my Service in another Activity?
I start the service in my summaryActivity
SocketServiceIntent = new Intent(this, SocketService.class);
You should call Activity(ContextWrapper)#stopService:
stopService(new Intent(SummaryActivity.this, SocketService.class));