a progess bar does not come up on the screen with the follow code. why?
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
ProgressBar pBar = new ProgressBar(this, null, android.R.attr.progressBarStyleSmall);
pBar.setLeft(5);
pBar.setTop(5);
pBar.setIndeterminate(true);
pBar.setVisibility(View.VISIBLE);
pBar.bringToFront();