进度条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(实例)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

时间: 2024-10-03 20:42:32

进度条ProgressBar及ProgressDialog(实例)的相关文章

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"

自定义圆形进度条ProgressBar的三种方式

http://liuzhichao.com/p/636.html 进度条默认是不确定(indeterminate=true)Android进度条 Android进度条有4种风格可以使用. 默认值是progressBarStyle. 设置成progressBarStyleSmall后,图标变小. 设置成progressBarStyleLarge后,图标变大 设置成progressBarStyleHorizontal后,变成横向长方形. 自定义圆形进度条ProgressBar的一般有三种方式: 一.

Android零基础入门第51节:进度条ProgressBar

原文:Android零基础入门第51节:进度条ProgressBar    不知不觉这已经是第51期了,在前面50期我们学了Android开发中使用频率非常高的一些UI组件,当然这些组件还不足够完成所有APP的开发,还会经常用到一些诸如进度条.拖动条.搜索框.时间和日期选择器等组件,那么后面几期就来一起学习这些高级组件.     一.ProgressBar系列组件       ProgressBar也是一组重要的组件,ProgressBar本身代表了进度条组件,它还派生了两个常用的组件:Seek

我的Android进阶之旅------&amp;gt;Android之进度条(ProgressBar)的功能和用法

一.简介        进度条是UI界面中一种非常实用的组件,退出用于向用户显示某个比较耗时间的操作完成的百分比.因此进度条可以动态的显示进度,避免长时间地执行某个耗时操作, 让用户感觉程序失去了响应,从而更好的提高用户界面的友好性.         Android支持几种风格的进度条,通过style属性可以为Progress指定风格.该属性可以支持如下几个属性值.        除此之外,ProgressBar还支持下图所示常用的XML属性值. 还有一种进度条,它可以直接在窗口标题上显示,这种

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

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

PHP+Ajax异步带进度条上传文件实例_php实例

最近项目中要做一个带进度条的上传文件的功能,学习了Ajax,使用起来比较方便,将几个方法实现就行. 前端引入文件 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> <script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min

java 使用进度条progressbar显示更新的问题,不能同步

问题描述 听说要想在一个frame上面,在点了一按钮的同时用progressbar进度条来显示操作的进度,得用个多线程处理.我也不要求这进度条显示多少百分比,就只要在那方法进行的时候来回摆动就行了.任务完成的时候就显示结束.privateJButtonButton=null;privateJPanelgetPane(){if(Cpane==null){pbar=newJProgressBar();pbar.setBounds(880,20,200,34);pbar.setStringPainte

Android环形进度条(安卓默认形式)实例代码_Android

Android开发中,有很多的功能在实际应用中都起了很大的作用,比如android进度条的实现方式,下面给大家介绍Android环形进度条(安卓默认形式),具体内容如下所示: .xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_widt

进度条ProgressBar

拖动滑块改变图片透明度 1.布局 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent&