Hi I need to do something like this :
I know,it's from an iphone application,but I want to add progressbar (circle) at the center of page and horizontal progressbar at the bottom of the page,which will show the current downloaded bytes and the speed of the internet connection.
I'm using this code for creating the circle progressbar :
private void createCancelProgressDialog(String title, String message, String buttonText)
{
cancelDialog = new ProgressDialog(this);
cancelDialog.setTitle(title);
cancelDialog.setMessage(message);
cancelDialog.setButton(buttonText, new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface dialog, int which)
{
finish();
}
});
cancelDialog.show();
}
Any idea how to add the second horizontal progressbar? I tried to include it in createCancelProgressDialog but it didn't work.
Thanks in advance!