Hi there,
I'm trying to start the GroomDroid web server but when it starts, a black window is shown. I'd like to start this app in the background without that screen being shown.
I'm starting this app in the following way:
I also tried with startService(webServer); but it doesn't seem to work.
Can anybody help me with that ?
I'm trying to start the GroomDroid web server but when it starts, a black window is shown. I'd like to start this app in the background without that screen being shown.
I'm starting this app in the following way:
Code:
Intent webServer = new Intent();
webServer.setClassName("net.allory.groom","net.allory.groom.GroomDroid");
startActivity(webServer);
I also tried with startService(webServer); but it doesn't seem to work.
Can anybody help me with that ?
