الكود المستخدم لصفحه
شريط
ProgressBar tp = new ProgressBar(this,null, android.R.attr.progressBarStyleHorizontal); linear1.addView(tp,700,30); tp.setIndeterminate(true);
دائري
ProgressBar msg = new ProgressBar(MainActivity.this); linear1.addView(msg);
الكود المستخدم لديالوج
final ProgressDialog prog = new ProgressDialog(MainActivity.this);prog.setMax(100);prog.setTitle("Hello");prog.setMessage("Message");prog.setIndeterminate(true);prog.setCancelable(false);prog.show();
التصنيف :
سكيتشوير