Notification Bar In Asynctask
i have move my onCreate() to asynctask, all works well now except the notification bar, i have no idea where should i place it. below is the functioning code: @Override prote
Solution 1:
i found out the solution, this is because i forgot to get the value of the ID. so when the apps wanted to create the notification, they cant create it because there is no ID. just add this line under doInBackground
title = array.getProperty(1).toString();
Post a Comment for "Notification Bar In Asynctask"