gpt4 book ai didi

android - android中的进度条onclick按钮?

转载 作者:行者123 更新时间:2023-11-29 14:20:49 24 4
gpt4 key购买 nike

如何在单击 Activity 中的按钮时显示进度条我的主要 Activity 中有一个按钮,如果我单击该按钮我想显示进度条我不想为此使用辅助 Activity 我已经完成了2 个 Activity ,但我需要在主要 Activity 中完成。

谢谢

我的代码:

家庭 Activity :

public void load(View v){
Intent intent = new Intent(this,Splash.class);
this.startActivity(intent);
}

飞溅 Activity :

public class Splash extends Activity {
private long ms = 0;
private long splashTime = 20000;
private boolean splashActive = true;
private boolean paused = false;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.splash);

Thread mythread = new Thread() {
public void run() {
try {
while (splashActive && ms < splashTime) {
if (!paused)
ms = ms + 100;
sleep(100);
}
} catch (Exception e) {
} finally {
Intent intent = new Intent(Splash.this, Home.class);
startActivity(intent);
}
}
};
mythread.start();
}
}

最佳答案

你可以这样做

ProgressDialog progress;

progress = new ProgressDialog(this);
progress.setTitle("Please Wait!!");
progress.setMessage("Wait!!");
progress.setCancelable(true);
progress.setProgressStyle(ProgressDialog.STYLE_SPINNER);
progress.show();

在要显示 ProgressBar 的位置调用此代码。

关于android - android中的进度条onclick按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16162400/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com