进度条ProgressBar及ProgressDialog(实例)

 更新时间:2017年07月03日 15:36:09   投稿:jingxian  
下面小编就为大家带来一篇进度条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 -&#45;&#45;最大显示进度
  2.android:progress -&#45;&#45;第一显示进度
  3.android:secondaryProgress-&#45;&#45;第二显示进度
  4.android:isdeterminate -&#45;&#45;设置是否精确显示(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(实例)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

相关文章

  • Android动态添加view的方法示例

    Android动态添加view的方法示例

    本篇文章主要介绍了Android动态添加view的方法示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-10-10
  • Android Studio打包jar及aar包的方法

    Android Studio打包jar及aar包的方法

    这篇文章主要介绍了Android Studio打包jar及aar包的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-07-07
  • 利用Flutter实现背景图片毛玻璃效果实例

    利用Flutter实现背景图片毛玻璃效果实例

    Flutter没有单独的模糊处理容器,需要部件层层叠加实现模糊效果,下面这篇文章主要给大家介绍了关于利用Flutter实现背景图片毛玻璃效果的相关资料,需要的朋友可以参考下
    2022-06-06
  • Flutter 滚动监听及实战appBar滚动渐变的实现

    Flutter 滚动监听及实战appBar滚动渐变的实现

    这篇文章主要介绍了Flutter 滚动监听及实战appBar滚动渐变,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-09-09
  • android 显示gif图片实例详解

    android 显示gif图片实例详解

    本文主要介绍android 显示gif图片的知识,这里整理相关资料及简单实例代码,有需要的小伙伴可以参考下
    2016-09-09
  • TabLayout实现ViewPager指示器的方法

    TabLayout实现ViewPager指示器的方法

    这篇文章主要为大家详细介绍了TabLayout实现ViewPager指示器,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-06-06
  • Android中的SQLite数据库简介

    Android中的SQLite数据库简介

    SQLite是Android系统采用的一种开源的轻量级的关系型的数据库。这篇文章主要介绍了Android中的SQLite数据库简介,需要的朋友可以参考下
    2017-03-03
  • 详解Android使用@hide的API的方法

    详解Android使用@hide的API的方法

    这篇文章主要介绍了详解Android使用@hide的API的方法的相关资料,希望通过本文大家能理解掌握这部分内容,需要的朋友可以参考下
    2017-09-09
  • Android自定义View实现loading动画加载效果

    Android自定义View实现loading动画加载效果

    项目开发中对Loading的处理是比较常见的,安卓系统提供的不太美观,引入第三发又太麻烦,这时候自己定义View来实现这个效果。这篇文章主要介绍了Android自定义View实现loading动画加载效果,需要的朋友可以参考下
    2017-03-03
  • Kotlin Dispatchers协程调度器源码深入分析

    Kotlin Dispatchers协程调度器源码深入分析

    Kotlin协程不是什么空中阁楼,Kotlin源代码会被编译成class字节码文件,最终会运行到虚拟机中。所以从本质上讲,Kotlin和Java是类似的,都是可以编译产生class的语言,但最终还是会受到虚拟机的限制,它们的代码最终会在虚拟机上的某个线程上被执行
    2022-11-11

最新评论