java - android : How to know about a new process start in device? -
i writing program respond when new process got start.
private final broadcastreceiver mbatinforeceiver = new broadcastreceiver() { @override public void onreceive(context arg0, intent intent) { // write here } };
i not know write instead of comments processes info.
thanks.
you can't monitor process starts using broadcastreceiver. should @ this: have run in loop, that's best bet.
Comments
Post a Comment