i tried to use this example,
//Register the ApplicationMessageFolder
//ReadableListImpl source is available in the messagelistdemo.
ApplicationMessageFolder folder = ApplicationMessageFolderRegistry.getInstance().registerFolder(
0x33c7ce29883abe5fL, "Test Folder", new ReadableListImpl());
//DemoMessage source is available in the messagelistdemo.
DemoMessage msg = new DemoMessage("me@here.com", "Pizza Toppings",
"What would you like on your pizza?", System.currentTimeMillis());
folder.fireElementAdded(msg);
//Display the application indicator icon.
ApplicationIndicatorRegistry reg = ApplicationIndicatorRegistry.getInstance();
EncodedImage image = EncodedImage.getEncodedImageResource("Indicator.png");
ApplicationIcon icon = new ApplicationIcon(image);
ApplicationIndicator indicator = reg.register(icon, false, true);
indicator.setIcon(icon);
indicator.setVisible(true);
I am able to see the indicatoe icon, but the message is not shown.
Could someone please tell me whats wrong ??
BR, Suppi