当前位置:网站首页>在窗口上面显示进度条
在窗口上面显示进度条
2022-07-07 15:40:00 【XLMN】
进度条不使用progressBar组件,直接由activity方法启动
在窗口上面显示进度条有如下两步
1.调用activity的requeswindowfeatrue方法设置进度条的样式
2、调用activity的setprogressbarVisibility(boolean)和setprogressbarindeterminte visibility(boolean) 方法控制进度条的显示和隐藏
//public class MainActivity extends Activity {
// Button bt1, bt2;
// int time;
//
// @Override
// protected void onCreate(Bundle savedInstanceState) {
// // TODO Auto-generated method stub
// super.onCreate(savedInstanceState);
//
// // 设置窗口特征:启用显示进度的进度条
// requestWindowFeature(Window.FEATURE_PROGRESS);
// // 设置窗口特征:启用不显示进度的进度条
// requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
// setContentView(R.layout.jindu);
// bt1 = (Button) findViewById(R.id.button1);
// bt2 = (Button) findViewById(R.id.button2);
// // 为button 设置事件监听
// bt1.setOnClickListener(new OnClickListener() {
//
// @Override
// public void onClick(View arg0) {
// // TODO Auto-generated method stub
// // 显示不带进度的进度条
// setProgressBarIndeterminateVisibility(true);
// // 显示带进度的进度条
// setProgressBarVisibility(true);
// // 设置进度条的进度
// // 显示栏进度最大值是10000,如果是控件可以自己设置最大值
//
// new Thread() {
// public void run() {
// while (time < 100) {
//
// setProgress(times() * 100);
// }
// };
// }.start();
//
// }
// });
//
// // 设置隐藏进度条
// bt2.setOnClickListener(new OnClickListener() {
//
// @Override
// public void onClick(View arg0) {
// // TODO Auto-generated method stub
// // 隐藏不带进度的进度条
// setProgressBarIndeterminateVisibility(false);
// // 隐藏带进度的进度条
// setProgressBarVisibility(false);
//
// }
// });
//
// }
//
// public int times() {
// time++;
// try {
// Thread.sleep(100);
// } catch (InterruptedException e) {
// // TODO Auto-generated catch block
// e.printStackTrace();
// }
// return time;
// }
//}
//==========================
边栏推荐
- Share the latest high-frequency Android interview questions, and take you to explore the Android event distribution mechanism
- 自定义View必备知识,Android研发岗必问30+道高级面试题
- Smart logistics platform: make overseas warehouses smarter
- [Seaborn] combination chart: facetgrid, jointgrid, pairgrid
- 无法链接远程redis服务器(解决办法百分百)
- 【网络攻防原理与技术】第6章:特洛伊木马
- 麒麟信安操作系统衍生产品解决方案 | 存储多路径管理系统,有效提高数据传输可靠性
- 【可信计算】第十次课:TPM密码资源管理(二)
- 本周小贴士131:特殊成员函数和`= default`
- Repair method of firewall system crash and file loss, material cost 0 yuan
猜你喜欢
Is AI more fair than people in the distribution of wealth? Research on multiplayer game from deepmind
LeetCode刷题day49
Nerf: the ultimate replacement for deepfake?
99%的人都不知道|私有化部署还永久免费的即时通讯软件!
Share the latest high-frequency Android interview questions, and take you to explore the Android event distribution mechanism
科普达人丨一文弄懂什么是云计算?
TabHOST 选项卡的功能和用法
让保险更“保险”!麒麟信安一云多芯云桌面中标中国人寿, 助力金融保险信息技术创新发展
How to choose the appropriate automated testing tools?
第3章业务功能开发(安全退出)
随机推荐
[fan Tan] those stories that seem to be thinking of the company but are actually very selfish (I: building wheels)
科普达人丨一文弄懂什么是云计算?
99%的人都不知道|私有化部署还永久免费的即时通讯软件!
电脑无法加域,ping域名显示为公网IP,这是什么问题?怎么解决?
L1-019 谁先倒(Lua)
【网络攻防原理与技术】第1章:绪论
【饭谈】如何设计好一款测试平台?
Flask build API service SQL configuration file
简单的loading动画
从DevOps到MLOps:IT工具怎样向AI工具进化?
Enum + Validation 的个人最佳实践 demo 分享
本周小贴士#135:测试约定而不是实现
第2章搭建CRM项目开发环境(搭建开发环境)
Matplotlib绘制三维图形
智慧物流平台:让海外仓更聪明
本周小贴士#136:无序容器
麒麟信安操作系统衍生产品解决方案 | 存储多路径管理系统,有效提高数据传输可靠性
阿富汗临时政府安全部队对极端组织“伊斯兰国”一处藏匿点展开军事行动
【TPM2.0原理及应用指南】 16、17、18章
本周小贴士#134:make_unique与私有构造函数