进度条ProgressBar及ProgressDialog(实例)

废话不多说,直接上代码

Main代码
package processdemo.example.administrator.processbardemo;

import android.app.Dialog;
import android.app.ProgressDialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity implements View.OnClickListener{
  /*ProgressBar
  简介:ProgressBar是进度条组件,通常用于向用户展示某个耗时操作完成的进度,而不让用户感觉是程序失去了响应,从而更好地提升用户界面的友好性
  课程目标:
      1、制定ProgressBar显示风格(系统默认)
      2、ProgressBar的分类
      水平进度条,能精确显示,圆圈进度条,不精确显示
  3、标题上ProgressBar的设置
  4、ProgressBar的关键属性
  5、ProgressBar的关键方法
  6、ProgressDiglog的基础使用
  7、自定义ProgressBar样式*/

  private ProgressBar progressBar3;
  private Button show;
  private Button add;
  private Button res;
  private Button reset;
  private TextView textView;
  private ProgressDialog progressDialog;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
//    启用窗口特征,启用带进度的进度条和不带进度的进度条,
    requestWindowFeature(Window.FEATURE_PROGRESS);
    requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
    setContentView(R.layout.activity_main);
    setProgressBarVisibility(true);
    setProgressBarIndeterminateVisibility(false);
//    最大值为Max=10000;
    //setProgress(600);
    init();

  }

  private void init() {
    ;
    progressBar3= (ProgressBar) findViewById(R.id.progressBar3);
    show= (Button) findViewById(R.id.show);
    add= (Button) findViewById(R.id.add);
    res= (Button) findViewById(R.id.res);
    reset= (Button) findViewById(R.id.reset);
    textView= (TextView) findViewById(R.id.textView);
    int first=progressBar3.getProgress();/*获取第一进度*/
    int second=progressBar3.getSecondaryProgress();/*获取第二进度*/
    int max=progressBar3.getMax();/*获取最大进度*/
    textView.setText("第一进度条百分比"+(int)((first/(float)max)*100)+"%"+"第二进度条百分比"+(int)(second/(float)max*100)+"%");

    add.setOnClickListener(this);
    res.setOnClickListener(this);
    reset.setOnClickListener(this);
    show.setOnClickListener(this);

  }

  @Override
  public void onClick(View v) {
    switch (v.getId()){
      case R.id.add:
        progressBar3.incrementProgressBy(10);
        progressBar3.incrementSecondaryProgressBy(10);
        break;
      case R.id.res:
        progressBar3.incrementProgressBy(-10);
        progressBar3.incrementSecondaryProgressBy(-10);
        break;
      case R.id.reset:
        progressBar3.setProgress(50);
        progressBar3.setSecondaryProgress(50);
        break;
      case R.id.show:
//        新建ProgressDialog对象
        progressDialog=new ProgressDialog(MainActivity.this);
//        设置显示风格
        progressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
//          设置标题
        progressDialog.setTitle("慕课网");
//        设置对话框的内容
        progressDialog.setMessage("欢迎大家支持慕课网");
//       设置图标
        progressDialog.setIcon(R.mipmap.ic_launcher);

       /*设置关于进度条的一些属性*/
//        设置最大进度
        progressDialog.setMax(100);
//        设置初始化已经增长的进度
        progressDialog.incrementProgressBy(50);
//        设置进度条明确显示进度
        progressDialog.setIndeterminate(false);

        /* 设定一个确定按钮*/
        progressDialog.setButton(DialogInterface.BUTTON_POSITIVE,"确定", new Dialog.OnClickListener() {
          @Override
          public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(MainActivity.this,"欢迎大家支持慕课网",Toast.LENGTH_SHORT).show();
          }
        });
//        是否可以通过返回按钮来取消对话框
        progressDialog.setCancelable(true);
//        显示ProgressDialog
        progressDialog.show();
    }
    textView.setText("第一进度条百分比"+(int)((progressBar3.getProgress()/(float)progressBar3.getMax())*100)+"%"+"第二进度条百分比"+(int)(progressBar3.getSecondaryProgress()/(float)progressBar3.getMax()*100)+"%");
  }
}

layout中activity_main.xml代码

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:paddingBottom="@dimen/activity_vertical_margin"
  android:paddingLeft="@dimen/activity_horizontal_margin"
  android:paddingRight="@dimen/activity_horizontal_margin"
  android:paddingTop="@dimen/activity_vertical_margin"
  tools:context="processdemo.example.administrator.processbardemo.MainActivity">

  <ProgressBar
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/progressBar"
    android:layout_alignParentTop="true"
    android:layout_alignParentStart="true"
    android:layout_marginTop="112dp" />

  <ProgressBar
    style="?android:attr/progressBarStyleSmall"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/progressBar2"
    android:layout_centerVertical="true"
    android:layout_alignParentEnd="true"
    android:layout_marginEnd="256dp" />

  <ProgressBar
    style="@android:style/Widget.ProgressBar.Horizontal"
    android:max="100"
    android:progress="50"
    android:secondaryProgress="80"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/progressBar3"
    android:layout_alignParentBottom="true"
    android:layout_alignStart="@+id/progressBar2"
    android:layout_marginBottom="81dp"
    android:layout_alignTop="@+id/res"
    android:progressDrawable="@layout/progress"/><!--progressDrawable改变样式-->

  <ProgressBar
    style="?android:attr/progressBarStyleLarge"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/progressBar4"
    android:layout_above="@+id/reset"
    android:layout_centerHorizontal="true" />

  <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/增加"
    android:id="@+id/add"
    android:layout_alignParentBottom="true"
    android:layout_alignParentEnd="true" />

  <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/减少"
    android:id="@+id/res"
    android:layout_above="@+id/add"
    android:layout_alignParentEnd="true" />

  <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/重置"
    android:id="@+id/reset"

    android:layout_alignBottom="@+id/progressBar3"
    android:layout_alignParentEnd="true" />

  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="进度"
    android:id="@+id/textView"
    android:layout_below="@+id/progressBar"
    android:layout_alignParentEnd="true" />

  <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/显示进度条"
    android:id="@+id/show"
    android:layout_below="@+id/progressBar2"
    android:layout_alignParentEnd="true" />
</RelativeLayout>
  <!-- ProgressBar关键属性
  1.android:max ---最大显示进度
  2.android:progress ---第一显示进度
  3.android:secondaryProgress---第二显示进度
  4.android:isdeterminate ---设置是否精确显示(false为精确,true为不精确)-->

layout中progress.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
  <item android:id="@android:id/background">
    <shape>
      <corners android:radius="5dip" />
      <gradient
        android:startColor="#76cf76"
        android:centerColor="#125912"
        android:centerY="0.75"
        android:endColor="#212621"
        android:angle="270"
        />
    </shape>
  </item>

  <item android:id="@android:id/secondaryProgress">
    <clip>
      <shape>
        <corners android:radius="5dip" />
        <gradient
          android:startColor="#80b51638"
          android:centerColor="#80a47d1a"
          android:centerY="0.75"
          android:endColor="#a066c3a7"
          android:angle="270"
          />
      </shape>
    </clip>
  </item>

  <item android:id="@android:id/progress">
    <clip>
      <shape>
        <corners android:radius="5dip" />
        <gradient
          android:startColor="#a38c1c"
          android:centerColor="#55a6b6"
          android:centerY="0.75"
          android:endColor="#b59826"
          android:angle="270"
          />
      </shape>
    </clip>
  </item>

</layer-list>

以上这篇进度条ProgressBar及ProgressDialog(实例)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。

(0)

相关推荐

  • Android ProgressBar进度条使用详解

    ProgressBar进度条,分为旋转进度条和水平进度条,进度条的样式根据需要自定义,之前一直不明白进度条如何在实际项目中使用,网上演示进度条的案例大多都是通过Button点击增加.减少进度值,使用方法incrementProgressBy(int),最简单的做法是在xml布局文件中放置ProgressBar空间,然后再MainActivity中触发事件后执行incrementProgressBy(int),代码如下: <LinearLayout xmlns:android="http:/

  • Android 中通过实现线程更新Progressdialog (对话进度条)

    作为开发者我们需要经常站在用户角度考虑问题,比如在应用商城下载软件时,当用户点击下载按钮,则会有下载进度提示页面出现,现在我们通过线程休眠的方式模拟下载进度更新的演示,如图(这里为了截图方便设置对话进度条位于屏幕上方): layout界面代码(仅部署一个按钮): <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.androi

  • 老生常谈ProgressBar、ProgessDialog的用法

    一.ProgressBar 1. 常用类型 1.1 不确定式圆形进度条 style="@android:style/Widget.Holo.Light.ProgressBar" style="@android:style/Widget.DeviceDefault.Light.ProgressBar.Large" ... 没有显示进度,可作为过场动画.有大.中.小三种大小,默认为中. 1.2 条形进度条 style="@android:style/Widge

  • Android ProgressDialog进度条使用详解

    进度条以一种客观化的方式,让我们知道程序正在执行的情况,在程序需要时间执行任务的时候,提示进度条友好的告诉用户说,当前任务还没有完成,请稍稍等待,进度条经常使用在APP下载应用.更新应用.加载网络数据中,使用频繁,常见的进度条有ProgressDialog.ProgressBar,这里只要介绍ProgressDialog. ProgressDialog读取文件进度解析主要涉及到一个知识: Handler消息处理机制, 文件字节流的操作, ProgressDialog类的使用 1.Handler消

  • Android 七种进度条的样式

    当一个应用在后台执行时,前台界面就不会有什么信息,这时用户根本不知道程序是否在执行.执行进度如何.应用程序是否遇到错误终止等,这时需要使用进度条来提示用户后台程序执行的进度.Android系统提供了两大类进度条样式,长形进度条(progress-BarStyleHorizontal) 和圆形进度条(progressBarStyleLarge).进度条用处很多,比如,应用程序装载资源和网络连接时,可以提示用户稍等,这一类进度条只是代表应用程序中某一部分的执行情况,而整个应用程序执行情况呢,则可以通

  • 解析android中ProgressBar的用法

    范例说明Android的Widget,有许多是为了与User交互而特别设计的,但也有部分是作为程序提示.显示程序运行状态的Widget.现在介绍的范例,与前一章介绍过的ProgressDialog对话框的应用目的相似,但由于前章介绍的ProgressDialog是继承自Android.app.ProgressDialog所设计的互动对话窗口,在应用时,必须新建ProgressDialog对象,在运行时会弹出"对话框"作为提醒,此时应用程序后台失去焦点,直到进程结束后,才会将控制权交给应

  • 进度条ProgressBar及ProgressDialog(实例)

    废话不多说,直接上代码 Main代码 package processdemo.example.administrator.processbardemo; import android.app.Dialog; import android.app.ProgressDialog; import android.content.DialogInterface; import android.os.Bundle; import android.support.v7.app.AppCompatActivi

  • PHP+AjaxForm异步带进度条上传文件实例代码

    在使用ajaxForm方法之前,首先需要安装form.js的插件,网上有: 一.首先说用法,ajaxForm可以接收0或1个参数,该参数可以是一个变量.一个对象或回调函数,这个对象主要有以下参数: var object= { url:url, //form提交数据的地址 type:type, //form提交的方式(method:post/get) target:target, //服务器返回的响应数据显示的元素(Id)号 beforeSerialize:function(){} //序列化提交

  • Android 实现带进度条的WebView的实例

    Android 实现带进度条的WebView的实例 1. WebView加载网页方法 //加载本地资源 loadUrl("file:///android_asset/example.html"); //加载网络资源 loadUrl("http://baidu.com"); 2. 带进度的Drawable文件view_progress_webview <?xml version="1.0" encoding="utf-8"

  • Bootstrap学习笔记之进度条、媒体对象实例详解

    1.基础进度条 要写在<div class="progress"></div>里面. <div class="col-md-6"> <div class="progress"> <div class="progress-bar" style="width:30%;"></div> </div> </div> 2.

  • Android开发之进度条ProgressBar的示例代码

    说明 ProgressBar一般用于显示一个过程,例如数据加载过程,文件下载进度,音乐播放进度等. 默认形式ProgressBar 默认方式下,ProgressBar显示为圆形进度,循环转圈,不显示具体的进度值,控制其显隐藏即可,如下 适用于界面加载 //xml中 <ProgressBar android:layout_width="wrap_content" android:layout_height="wrap_content" /> //代码中控制

  • Python进度条的制作代码实例

    这篇文章主要介绍了Python进度条的制作代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 import sys,time #导入模块 for i in range(50): #进度条的长度 sys.stdout.write("#") #进度条的内容,这里要注意了,pycharm有可能不显示write的方法 sys.stdout.flush() #刷新缓存 time.sleep(0.5) #间隔时间,和shell的sleep差不

  • android实现简单进度条ProgressBar效果

    本文实例为大家分享了android实现简单进度条ProgressBar的具体代码,供大家参考,具体内容如下 记录一下今天学习的进度条ProgressBar 1.在布局文件中添加ProgressBar <ProgressBar         android:id="@+id/progressbar"         android:layout_width="match_parent"         android:layout_height="w

  • PHP 进度条函数的简单实例

    PHP 进度条函数的简单实例 其实进度条的做法很简单的.网上的一大堆,自己写了一个,哈哈,感觉看起来很有感觉. 实例代码: function ShowPercent($now,$total) { $percent = sprintf('%.0f',$now*100/$total); $html = '<table width="60%" style="border-collapse:separate" height="10" border=

  • Android进度条ProgressBar的实现代码

    ProgressBar进度条 当一个应用在后台执行时,前台界面不会有任何信息,这时,用户根本不知道程序是否在执行以及执行的进度等, 因此需要使用进度条来提示程序执行的进度. 而ProgressBar就是来做这个事情的. activity_main.xml <?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android=

  • Android 自定义view实现进度条加载效果实例代码

    这个其实很简单,思路是这样的,就是拿view的宽度,除以点的点的宽度+二个点 之间的间距,就可以算出大概能画出几个点出来,然后就通过canvas画出点,再然后就是每隔多少时间把上面移动的点不断的去改变它的坐标就可以, 效果如下: 分析图: 代码如下: package com.example.dotloadview; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Bit

随机推荐