Android(安卓)ProgressDialog 控件

进度条用于显示任务的进度。例如,当您从互联网上传或下载内容时,最好向用户显示下载/上传的进度。

在 Android 中有一个名为 ProgressDialog 的类,它允许您创建进度条。为了做到这一点,您需要实例化这个类的一个对象。其语法为:

  1. ProgressDialog progress = new ProgressDialog(this);

现在可以设置此对话框的一些属性。例如,它的风格、文本等。

  1. progress.setMessage("Downloading Music :) ");
  2. progress.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
  3. progress.setIndeterminate(true);

除了这些方法之外,ProgressDialog 类还提供了其他方法:

编号标题 & 描述
1

getMax()

此方法返回进度的最大值。

2

incrementProgressBy(int diff)

此方法将进度条递增作为参数传递的值的差值。

3

setIndeterminate(boolean indeterminate)

此方法将确定是否设置进度指示器。

4

setMax(int max)

此方法设置进度对话框的最大值。

5

setProgress(int value)

此方法用于使用特定值更新进度对话框。

6

show(Context context, CharSequence title, CharSequence message)

这是一个静态方法,用于显示进度对话框。


实例

这个例子演示了进度对话框的水平使用,它实际上是一个进度条。按下按钮时会显示进度条。

要实验这个例子,您需要在根据下面的步骤开发应用程序之后在实际设备上运行这个。

步骤描述
1您将使用 Android studio 在 com.example.sairamkrishna.myapplication 包下创建 Android 应用程序。
2修改 src/MainActivity.java 文件添加进度代码以显示进度对话框。
3修改 res/layout/activity_main.xml 文件添加相应 XML 代码。
4运行应用程序并选择正在运行的 android 设备,并在其上安装应用程序并验证结果。

以下是修改后的主要活动文件 src/MainActivity.java. 的内容:

  1. package com.example.sairamkrishna.myapplication;
  2. import android.app.ProgressDialog;
  3. import android.support.v7.app.ActionBarActivity;
  4. import android.os.Bundle;
  5. import android.view.View;
  6. import android.widget.Button;
  7. public class MainActivity extends ActionBarActivity {
  8. Button b1;
  9. private ProgressDialog progress;
  10. protected void onCreate(Bundle savedInstanceState) {
  11. super.onCreate(savedInstanceState);
  12. setContentView(R.layout.activity_main);
  13. b1 = (Button) findViewById(R.id.button2);
  14. }
  15. public void download(View view){
  16. progress=new ProgressDialog(this);
  17. progress.setMessage("Downloading Music");
  18. progress.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
  19. progress.setIndeterminate(true);
  20. progress.setProgress(0);
  21. progress.show();
  22. final int totalProgressTime = 100;
  23. final Thread t = new Thread() {
  24. @Override
  25. public void run() {
  26. int jumpTime = 0;
  27. while(jumpTime < totalProgressTime) {
  28. try {
  29. sleep(200);
  30. jumpTime += 5;
  31. progress.setProgress(jumpTime);
  32. } catch (InterruptedException e) {
  33. // TODO Auto-generated catch block
  34. e.printStackTrace();
  35. }
  36. }
  37. }
  38. };
  39. t.start();
  40. }
  41. }

修改 res/layout/activity_main.xml 文件的内容如下:

  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
  3. android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
  4. android:paddingRight="@dimen/activity_horizontal_margin"
  5. android:paddingTop="@dimen/activity_vertical_margin"
  6. android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
  7. <TextView
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:id="@+id/textView"
  11. android:layout_alignParentTop="true"
  12. android:layout_centerHorizontal="true"
  13. android:textSize="30dp"
  14. android:text="Progress bar" />
  15. <TextView
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:text="cankaoshouce"
  19. android:id="@+id/textView2"
  20. android:layout_below="@+id/textView"
  21. android:layout_centerHorizontal="true"
  22. android:textSize="35dp"
  23. android:textColor="#ff16ff01" />
  24. <Button
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:text="Download"
  28. android:onClick="download"
  29. android:id="@+id/button2"
  30. android:layout_marginLeft="125dp"
  31. android:layout_marginStart="125dp"
  32. android:layout_centerVertical="true" />
  33. </RelativeLayout>

这是默认的 AndroidManifest.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.sairamkrishna.myapplication" >
  4. <application
  5. android:allowBackup="true"
  6. android:icon="@mipmap/ic_launcher"
  7. android:label="@string/app_name"
  8. android:theme="@style/AppTheme" >
  9. <activity
  10. android:name=".MainActivity"
  11. android:label="@string/app_name" >
  12. <intent-filter>
  13. <action android:name="android.intent.action.MAIN" />
  14. <category android:name="android.intent.category.LAUNCHER" />
  15. </intent-filter>
  16. </activity>
  17. </application>
  18. </manifest>

让我们尝试运行您的应用程序。我假设您在进行环境设置时创建了 AVD。要从 Android Studio 运行应用程序,请打开项目的 activity 文件之一,然后单击工具栏上的运行 Eclipse Eclipse Run Icon 图标。Android studio 在您的 AVD 上安装应用程序并启动它,如果您的设置和应用程序一切正常,它将显示以下模拟器窗口:

选择您的移动设备作为选项,然后检查将显示以下屏幕的移动设备:

只需按下按钮启动进度条。按下后,将出现以下屏幕:

它将不断更新自己。

分类导航