当前位置:网站首页>Show progress bar above window
Show progress bar above window
2022-07-07 17:36:00 【XLMN】
Progress bar not used progressBar Components , Directly by the activity Method start up
There are two steps to display the progress bar on the window
1. call activity Of requeswindowfeatrue Method to set the style of the progress bar
2、 call activity Of setprogressbarVisibility(boolean) and setprogressbarindeterminte visibility(boolean) Method to control the display and hiding of the progress bar
//public class MainActivity extends Activity {
// Button bt1, bt2;
// int time;
//
// @Override
// protected void onCreate(Bundle savedInstanceState) {
// // TODO Auto-generated method stub
// super.onCreate(savedInstanceState);
//
// // Set window features : Enable progress bar showing progress
// requestWindowFeature(Window.FEATURE_PROGRESS);
// // Set window features : Enable progress bars that do not show progress
// requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
// setContentView(R.layout.jindu);
// bt1 = (Button) findViewById(R.id.button1);
// bt2 = (Button) findViewById(R.id.button2);
// // by button Set event listening
// bt1.setOnClickListener(new OnClickListener() {
//
// @Override
// public void onClick(View arg0) {
// // TODO Auto-generated method stub
// // Show progress bar without progress
// setProgressBarIndeterminateVisibility(true);
// // Show progress bar with progress
// setProgressBarVisibility(true);
// // Set the progress bar's progress
// // The maximum progress of the display bar is 10000, If it is a control, you can set the maximum value by yourself
//
// new Thread() {
// public void run() {
// while (time < 100) {
//
// setProgress(times() * 100);
// }
// };
// }.start();
//
// }
// });
//
// // Set hidden progress bar
// bt2.setOnClickListener(new OnClickListener() {
//
// @Override
// public void onClick(View arg0) {
// // TODO Auto-generated method stub
// // Hide the progress bar without progress
// setProgressBarIndeterminateVisibility(false);
// // Hide the progress bar with progress
// setProgressBarVisibility(false);
//
// }
// });
//
// }
//
// public int times() {
// time++;
// try {
// Thread.sleep(100);
// } catch (InterruptedException e) {
// // TODO Auto-generated catch block
// e.printStackTrace();
// }
// return time;
// }
//}
//==========================
边栏推荐
- [source code interpretation] | source code interpretation of livelistenerbus
- L1-025 正整数A+B(Lua)
- 策略模式 - Unity
- 第二十四届中国科协湖南组委会调研课题组一行莅临麒麟信安调研考察
- [fan Tan] after the arrival of Web3.0, where should testers go? (ten predictions and suggestions)
- A tour of grpc:03 - proto serialization / deserialization
- LeetCode 515(C#)
- 让保险更“保险”!麒麟信安一云多芯云桌面中标中国人寿, 助力金融保险信息技术创新发展
- Flash build API Service - generate API documents
- 麒麟信安云平台全新升级!
猜你喜欢
【网络攻防原理与技术】第6章:特洛伊木马
【TPM2.0原理及应用指南】 16、17、18章
Numberpick的功能和用法
专精特新软件开发类企业实力指数发布,麒麟信安荣誉登榜
Nerf: the ultimate replacement for deepfake?
Several best practices for managing VDI
麒麟信安携异构融合云金融信创解决方案亮相第十五届湖南地区金融科技交流会
【TPM2.0原理及应用指南】 12、13、14章
Devops' operational and commercial benefits Guide
Linux 安装mysql8.X超详细图文教程
随机推荐
跟奥巴马一起画方块(Lua)
【网络攻防原理与技术】第5章:拒绝服务攻击
【TPM2.0原理及应用指南】 9、10、11章
麒麟信安操作系统衍生产品解决方案 | 存储多路径管理系统,有效提高数据传输可靠性
数值 - number(Lua)
Enum + Validation 的个人最佳实践 demo 分享
LeetCode1051(C#)
本周小贴士#136:无序容器
Proxmox VE重装后,如何无损挂载原有的数据盘?
【黄啊码】为什么我建议您选择go,而不选择php?
第2章搭建CRM项目开发环境(搭建开发环境)
【可信计算】第十三次课:TPM扩展授权与密钥管理
mysql使用笔记一
Solidity 开发环境搭建
LeetCode 535(C#)
Problems encountered in Jenkins' release of H5 developed by uniapp
Jenkins发布uniapp开发的H5遇到的问题
The computer cannot add a domain, and the Ping domain name is displayed as the public IP. What is the problem? How to solve it?
[Seaborn] combination chart: facetgrid, jointgrid, pairgrid
【分布式理论】(一)分布式事务