Используйте AsyncTask, у него есть полезные методы, а именно:
protected void onPreExecute(){
//Show a dialog here
}
protected void onProgressUpdate(Integer... progress) {
setProgressPercent(progress[0]);
}
protected void onPostExecute(Long result) {
showDialog("Downloaded " + result + " bytes");
}
Вы можете опубликовать свой процентный прогресс в методе onProgressUpdate
и в onPostExcecute
закрыть диалоговое окно