progressBar

main.xml

<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=".Main" >

<TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

<ProgressBar
        android:id="@+id/progressBar1"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="300dp"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/textView1"
        android:layout_below="@+id/textView1"
        android:layout_marginTop="25dp"
        android:max="100"
        android:progress="40"
        android:secondaryProgress="75"
        />

<Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/progressBar1"
        android:layout_below="@+id/progressBar1"
        android:layout_marginTop="53dp"
        android:text="inc" />

<Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/button1"
        android:layout_marginLeft="44dp"
        android:layout_toRightOf="@+id/button1"
        android:text="dec" />

<Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/button1"
        android:layout_below="@+id/button1"
        android:layout_marginTop="47dp"
        android:text="inc2" />

<Button
        android:id="@+id/button4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/button3"
        android:layout_alignBottom="@+id/button3"
        android:layout_alignLeft="@+id/button2"
        android:text="dec2" />

</RelativeLayout>

Main.java

package com.example.myprocessbar;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.ProgressBar;

public class Main extends Activity {
 
 ProgressBar progressBar;
 
 Button  btn1, btn2, btn3, btn4;
 
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 
  super.onCreate(savedInstanceState);
  
  // requestWindowFeature(Window.FEATURE_NO_TITLE);
  
  requestWindowFeature(Window.FEATURE_PROGRESS);
  
  setContentView(R.layout.main);
  
  setProgressBarVisibility(true);
  
  progressBar = (ProgressBar) findViewById(R.id.progressBar1);
  
  btn1 = (Button) findViewById(R.id.button1);
  
  btn2 = (Button) findViewById(R.id.button2);
  
  btn3 = (Button) findViewById(R.id.button3);
  
  btn4 = (Button) findViewById(R.id.button4);
  
  btn1.setOnClickListener(new View.OnClickListener() {
   
   @Override
   public void onClick(View v) {
   
    // TODO Auto-generated method stub
    progressBar.incrementProgressBy(1);
    
    progressBar.setProgress(progressBar
      .getProgress());
    
   }
  });
  
  btn2.setOnClickListener(new View.OnClickListener() {
   
   @Override
   public void onClick(View v) {
   
    // TODO Auto-generated method stub
    progressBar.incrementProgressBy(-1);
    
    progressBar.setProgress(progressBar
      .getProgress());
    
   }
  });
  
  btn3.setOnClickListener(new View.OnClickListener() {
   
   @Override
   public void onClick(View v) {
   
    // TODO Auto-generated method stub
    progressBar.incrementSecondaryProgressBy(1);
    
    progressBar.setSecondaryProgress(progressBar
      .getSecondaryProgress());
    
   }
  });
  
  btn4.setOnClickListener(new View.OnClickListener() {
   
   @Override
   public void onClick(View v) {
   
    // TODO Auto-generated method stub
    progressBar.incrementSecondaryProgressBy(-1);
    
    progressBar.setSecondaryProgress(progressBar
      .getSecondaryProgress());
    
   }
  });
  
 }
 
 @Override
 public boolean onCreateOptionsMenu(Menu menu) {
 
  // Inflate the menu; this adds items to the action bar if it is
  // present.
  getMenuInflater().inflate(R.menu.main, menu);
  return true;
 }
 
}

时间: 2024-11-09 08:24:39

progressBar的相关文章

WinFrom ProgressBar控件的使用

在WinForm程序中,大多数情况下我们是知道程序运行所需要的时间或步骤的,比如批量复制文件时文件的数量,数据导出或导入时数据的总行数等等.对于步骤比较确定的操作,如果程序执行过程时间较长,很容易使用BackgroundWorker结合ProgressBar来显示一个实时的进度.相关内容大家可以看我博客中的其它文章,有关如何使用BackgroundWorker和ProgressBar.但是,有的时候我们是不确定程序执行的具体步骤或时长的,比如连接一个远程服务或数据库服务,或者调用一个远程过程或W

Android学习笔记(24):进度条组件ProgressBar及其子类

ProgressBar作为进度条组件使用,它还派生了SeekBar(拖动条)和RatingBar(星级评分条). ProgressBar支持的XML属性: Attribute Name Related Method Description style 设置ProgressBar指定风格 android:indeterminate 设置为true时,进度条不显示运行进度 android:indeterminateBehavior indeterminate模式下.当进度条达到最大值时的动画处理行为

Android 利用代码在屏幕中间位置显示ProgressDialog和ProgressBar

package cc.testprogressdialog; import android.os.Bundle; import android.view.Gravity; import android.view.View; import android.view.ViewGroup.LayoutParams; import android.widget.FrameLayout; import android.widget.LinearLayout; import android.widget.P

EasyUI系列学习(八)-ProgressBar(进度条)

一.创建组件 1.class加载 <div class="easyui-progressbar"></div> 2.js加载 <div id="pb"></div> <script> $(function () { $("#pb").progressbar(); }) </script> 二.属性 <div id="pb"></div&g

EasyUI - Progressbar 进度条控件

效果: html代码: <div id="p" style="width:400px;"></div> JS代码: $(function () { $('#p').progressbar({ value: 60 }); })

Android自定义横向的ProgressBar

其实很简单,上代码! 在res下创建drawable文件夹,新建文件drawable/progressbar_color.xml <?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >     <!-- 背景  gradient是渐变,corners定

Progressbar自定义大小

1.默认的圆形进度条有点大,自己可以改小一点 (1)引用自定义的style <ProgressBar android:id="@+id/footer_progressbar" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="10dp" style="@styl

Android学习笔记:进度条ProgressBar的使用以及与AsyncTask的配合使用

ProgressBar时android用于显示进度的组件.当执行一个比较耗时的操作(如io操作.网络操作等),为了避免界面没有变化让用户体验降低,提供一个进度条可以让用户知道程序还在运行. 一.ProgressBar有如下几种常见样式 1.默认进度条的样式为圆圈(为中等大小的圆圈) <ProgressBar android:layout_width="wrap_content" android:layout_height="wrap_content" />

ProgressBar样式总结与自动填充方法(代码)

有时候开发的时候需要用一个进度条告知用户目前正在运行一个耗时操作,但是并不需要明确知道某个value来setProgress,所以就可以自定义一个时间和进度让进度条自动运行了. 下面是代码: Handler mHandler=new Handler(){ @Override public void handleMessage(Message msg) { p.setProgress(msg.what); mHandler.post(updateThread);//实现连续过程 } }; Runn

Android自定义进度条-带文本(文字进度)的水平进度条(ProgressBar)

/** * 带文本提示的进度条 */ public class TextProgressBar extends ProgressBar { private String text; private Paint mPaint; public TextProgressBar(Context context) { super(context); initText(); } public TextProgressBar(Context context, AttributeSet attrs, int d