Is there any way to catch/detect the start or instance of the system notifications on the status bar? I am planning to redirect the notifications appearing on the status bar into a simple toast or the likes.
Is there any way to catch/detect the start or instance of the system notifications
Share
AFAIK, there isn’t any way of doing that.
EDIT : Adding example to handle the sdcard events
private BroadcastReceiver mScanListener = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
...
}
}