I'm try to create a simple service.
this is the service source
public class UploadService extends IntentService {
public UploadService(String name) {
super(name);
// TODO Auto-generated constructor stub
}
@Override
public int onStartCommand(Intent intent, int flags, int startId){
Toast.makeText(this, "service starting", Toast.LENGTH_SHORT).show();
return super.onStartCommand(intent, flags, startId);
}
@Override
protected void onHandleIntent(Intent intent) {
// TODO Auto-generated method stub
Toast.makeText(this, "handling intent", Toast.LENGTH_SHORT).show();
}
this is the definition of the service in the manifest
<service
android:enabled="true"
android:name="com.sopla.Services.UploadService">
</service>
this is the code I use to start the service in the onCreate method of the main Activity called at the startup of the program
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Intent intent = new Intent(this,
com.sopla.Services.UploadService.class);
startService(intent);
I can debug all the onCreate method, but after this the program hangs, and I cannot reach the breakpoint in the service source code.
I'm missing something? thanks, Luca
try this for your onStartCommand: