mixer-a
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
posts - 101, comments - 29, trackbacks - 0
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
给我留言
查看公开留言
查看私人留言
随笔档案
(101)
2012年8月 (2)
2012年7月 (13)
2012年6月 (6)
2012年5月 (6)
2012年4月 (26)
2012年3月 (16)
2012年2月 (17)
2012年1月 (15)
我的连接
a
iteye
csdn
www.javady.com
www.javady.com
搜索
最新评论
1. re: android开发我的新浪微博客户端-登录页面UI篇(4.1)[未登录]
仿真时提示:No Launcher activity found!
--小龙
2. re: android开发我的新浪微博客户端-登录页面UI篇(4.1)[未登录]
“新建名LoginActivity.java的Activity并且在AndroidManifest.xml中进行相应配置”请问怎么进行配置?因为新建的LoginActivity.java无法启动仿真。
--小龙
3. re: JS 时间处理和格式转换
@Wanlic2008
不用把时间的年份拿出来单独分析
--Wanlic2008
4. re: JS 时间处理和格式转换
评论内容较长,点击标题查看
--Wanlic2008
5. re: Android进阶2之Http连接GET/POST请求
有用
--许大海
阅读排行榜
1. JS 时间处理和格式转换(41174)
2. Android进阶2之Activity之间数据交流(onActivityResult的用法)(11496)
3. [原]Android应用程序发送广播(sendBroadcast)的过程分析(7298)
4. [原]Android应用程序键盘(Keyboard)消息处理机制分析(4881)
5. 并行计算框架的Java实现--系列一(3772)
评论排行榜
1. 你想不到的压缩方法:将javascript文件压缩成PNG图像存储(4)
2. MyEclipse快捷键设置(4)
3. 开发流程那些事:6天时间修改1行代码(3)
4. JS 时间处理和格式转换(3)
5. 也谈 GET 和 POST 的区别(2)
Android学习笔记之ProgressDialog
mian.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView android:id="@+id/information" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="progressdialog"/> <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="圆形"/> <Button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="水平条"/> </LinearLayout>
java:
package Android2.test; import android.app.Activity; import android.app.ProgressDialog; import android.content.DialogInterface; import android.os.Bundle; import android.view.View; import android.widget.Button; public class Android2Activity extends Activity { private Button Button1,Button2; int m_count = 0; //声明进度条对话框 ProgressDialog progressdialog; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); //得到按钮对象 Button1 = (Button)findViewById(R.id.button1); Button2 = (Button)findViewById(R.id.button2); //设置Button1的事件监听 Button1.setOnClickListener(new Button.OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub //创建ProgressDialog对象 progressdialog = new ProgressDialog(Android2Activity.this); // 设置进度条风格,风格为圆形,旋转的 progressdialog.setProgressStyle(ProgressDialog.STYLE_SPINNER); // 设置ProgressDialog 标题 progressdialog.setTitle("提示"); // 设置ProgressDialog 提示信息 progressdialog.setMessage("正在缓冲中,请稍等....."); // 设置ProgressDialog 标题图标 // m_pDialog.setIcon(R.drawable.img1); // 设置ProgressDialog 的进度条是否不明确 progressdialog.setIndeterminate(false); // 设置ProgressDialog 是否可以按退回按键取消 progressdialog.setCancelable(true); // 设置ProgressDialog 的一个Button progressdialog.setButton("确定", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int i) { //点击“确定按钮”取消对话框 dialog.cancel(); } }); // 让ProgressDialog显示 progressdialog.show(); } }); //设置Button2的事件监听 Button2.setOnClickListener(new Button.OnClickListener() { public void onClick(View v) { // TODO Auto-generated method stub m_count = 0; // 创建ProgressDialog对象 progressdialog = new ProgressDialog(Android2Activity.this); // 设置进度条风格,风格为长形 progressdialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL); // 设置ProgressDialog 标题 progressdialog.setTitle("提示"); // 设置ProgressDialog 提示信息 progressdialog.setMessage("正在缓冲中,请稍等....."); // 设置ProgressDialog 标题图标 // m_pDialog.setIcon(R.drawable.img2); // 设置ProgressDialog 进度条进度 progressdialog.setProgress(100); // 设置ProgressDialog 的进度条是否不明确 progressdialog.setIndeterminate(false); // 设置ProgressDialog 是否可以按退回按键取消 progressdialog.setCancelable(true); // 让ProgressDialog显示 progressdialog.show(); new Thread() { public void run() { try { while (m_count <= 100) { // 由线程来控制进度。 progressdialog.setProgress(m_count++); Thread.sleep(100); } progressdialog.cancel(); } catch (InterruptedException e) { progressdialog.cancel(); } } }.start(); } }); } }
posted on 2012-01-23 20:37
mixer-a
阅读(401)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理