How to start activity by service?
I use the following code to start a new activity by an activity is succeed,but failed by aservice.
Intent intent = new Intent("remote.service.SHUTDOWNBINDING");
startActivity(intent);
can anyboby tell me how to start a new activity by service?
|