progressbar

来源:互联网 发布:查找淘宝用户购买记录 编辑:程序博客网 时间:2024/06/05 05:02

                                            什么是progressbar?

Android控件中的进度条。

怎么用它?


<ProgressBar    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:id="@+id/progressbar"    />    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"            android:id="@+id/tv_progressbar_num"        />        <Button            android:layout_width="wrap_content"            android:layout_height="wrap_content"                android:text="下载"                    android:onClick="download"            />
里面的方法:
getMax():返回这个进度条的范围的上限


原创粉丝点击