package com.isoftstone.cry;import android.app.Activity;import android.os.Bundle;import android.view.View;import android.widget.Button;import android.widget.ProgressBar;public class ProgressBarDialog extends Activity {private Button btn1 ,btn2 ;private ProgressBar progressBar ;@Overrideprotected void onCreate(Bundle savedInstanceState) {// TODO Auto-generated method stubsuper.onCreate(savedInstanceState);setContentView(R.layout.progressbar);btn1 = (Button)findViewById(R.id.progressBarbutton1);btn2 = (Button)findViewById(R.id.progressBarbutton2);progressBar = (ProgressBar)findViewById(R.id.progressBar1);btn1.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {// TODO Auto-generated method stubprogressBar.incrementProgressBy(10);}});btn2.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {// TODO Auto-generated method stubprogressBar.incrementProgressBy(-10);}});}}
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical" >    <Button        android:id="@+id/progressBarbutton1"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="Button1" />    <Button        android:id="@+id/progressBarbutton2"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="Button2" />    <ProgressBar        android:id="@+id/progressBar1"        style="?android:attr/progressBarStyleHorizontal"        android:layout_width="match_parent"        android:layout_height="wrap_content" /></LinearLayout>

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. Android 源码之OpenGL 人物走动源码
  2. [Android][Audio] audio_policy.conf文件
  3. 【实习项目记录】(三)调整网络图片固定宽
  4. UE4打包安卓项目遇到UATHelper: Packagin
  5. android 在代码中获取SHA1值
  6. androidUI设计之旅 ----SeekBar的基本应
  7. Android中正确安全删除集合中的元素
  8. Android Ant打包笔记
  9. 【android 串口开发(二) 之 串口读写操作】
  10. android studio 打jar包并混淆