This is just a small overview to give you a few keywords.
First of all, how to create a notification should be pretty straightforward and is well documented. If you don't know how to create a normal notification, check out Status Bar Notifications.
The next step is to create a notification with a custom layout that contains a ProgressBar (since there is no prebuilt layout for this afaik), which is also documented on the same page. Once you have created Notification instance for that, you should keep the reference and use it to update your ProgressBar via
notification.contentView.setProgressBar(R.id.yourprogressbar, 100, 42, false);
nm.notify(notificationId, notification);
nm is a NotificationManager reference here, also see RemoteViews.setProgressBar()
That's basically the UI-side of things. To actually download a file in the background you should make use of a Service that utilizes an AsyncTask (since services run in the UI-thread - the name misleads often). You can use AsyncTask.publishProgress() to send download progress updates to the UI-thread and update your progress bar inside AsyncTask.onProgressUpdate().