How can I do stack notifications in parse android? I send the push messages for the device, example:
ParsePush androidPush = new ParsePush();
 androidPush.setMessage("TEST");
 androidPush.sendInBackground();
For example , if I send two notifications then appear two icons in phone bar. I want to have only 1 icon.
 
    