I'm goint to display an indeterminate progress bar in my notification, according to Android GuidLine however progress bar is not displayed and only text titles are displaying. I wonder what I have missed?
Update: this happens in specific phones only
Here is my code:
mNotifyManager = (NotificationManager) currentActivity
.getSystemService(Context.NOTIFICATION_SERVICE);
mBuilder = new NotificationCompat.Builder(currentActivity);
mBuilder.setContentTitle("Downloading")
.setContentText("download in progress")
.setSmallIcon(R.drawable.ic_launcher);
mBuilder.setProgress(0, 0, true);
0 comments:
Post a Comment