国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > 互联网 > 【边做项目边学Android】知识点:Android控件系列之ProgressDialog与ProgressBar

【边做项目边学Android】知识点:Android控件系列之ProgressDialog与ProgressBar

来源:程序员人生   发布时间:2014-11-10 08:53:28 阅读次数:2527次

ProgressDialog

ProgressDialog与ProgressBar在UI中动态显示1个加载图标显示程序运行状态。
ProgressDialog是继承自Android.app.AlertDialog所设计的互动对话窗口,使用时,必须新建ProgressDialog对象,在运行时会弹出“对话框”作为提示,此时利用程序后台失去焦点(即此时没法对UI组件进行操作),直到进程结束后,才会将控制权交给利用程序,如果在Activity当中不希望后台失焦,又希望提示User有某后台程序正处于繁忙阶段,那末ProgressBar就会派上用处了。

ProgressDialog pd= new ProgressDialog(TestProgerssDialogActivity.this); // 设置pd风格 pd.setProgress(ProgressDialog.STYLE_SPINNER);//圆形 pd.setProgress(ProgressDialog.STYLE_HORIZONTAL);//水平 // 设置pd标题 pd.setTitle("提示"); // 设置pd提示 pd.setMessage("这是1个圆形进度条对话框"); // 设置pd进度条的图标 pd.setIcon(R.drawable.flag); // 设置pd的进度条是不是不明确 //不转动时,当前值在最小和最大值之间移动,1般在进行1些没法肯定操作时间的任务时作为提示,明确时就是根据你的进度可以设置现在的进度值 pd.setIndeterminate(false); //pd.setProgress(m_count++); // 是不是可以按回退键取消 pd.setCancelable(true); // 设置pd的1个Button pd.setButton("肯定", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { dialog.cancel(); } }); // 显示pd.show();

当有ProgressDialog时,点击back时,会首先取消ProgressDialog ,以上代码可以监听进度条被取消事件(也就是点击Back键取消ProgressDialog),此时可以在这里作1些取消后台操作的处理。


ProgressBar

XML重要属性

android:progressBarStyle:默许进度条样式 android:progressBarStyleHorizontal:水平样式
重要方法
getMax():返回这个进度条的范围的上限
getProgress():返回进度
getSecondaryProgress():返回次要进度
incrementProgressBy(int diff):指定增加的进度
isIndeterminate():唆使进度条是不是在不肯定模式下
setIndeterminate(boolean indeterminate):设置不肯定模式下
setVisibility(int v):设置该进度条是不是可视

重要事件
onSizeChanged(int w, int h, int oldw, int oldh):当进度值改变时引发此事件

 

<?xml version="1.0" encoding="utf⑻"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Welcome to blog" /> <ProgressBar android:id="@+id/rectangleProgressBar" style="?android:attr/progressBarStyleHorizontal" mce_style="?android:attr/progressBarStyleHorizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:visibility="gone" /> <ProgressBar android:id="@+id/circleProgressBar" style="?android:attr/progressBarStyleLarge" mce_style="?android:attr/progressBarStyleLarge" android:layout_width="wrap_content" android:layout_height="wrap_content" android:visibility="gone" /> <Button android:id="@+id/button" android:text="Show ProgressBar" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>



参考:

http://www.jb51.net/article/38532.htm

生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生