好吧。例如,当我按下按钮时,我想将进度条的可见性设置为 VISIBLE ......然后我想在恢复相同的活动时将可见性设置为 GONE。
如果可能,同时加载其他数据。
这是我正在尝试的:
public void onPause(){
super.onPause();
final ProgressBar progressBar = (ProgressBar) findViewById(R.id.progressBar);
progressBar.setVisibility(View.GONE);
}
和
Button aButton = (Button) findViewById(R.id.abutton);
aButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
final ProgressBar progressBar = (ProgressBar) findViewById(R.id.progressBar);
progressBar.setVisibility(View.VISIBLE);
Intent i = new Intent("org.packagename.etc.etc");
startActivity(i);
}
});
但它不起作用,因为当我单击按钮时它不显示栏它只是直接跳到活动(加载数据所以需要几秒钟)。所以它需要穿线还是什么?
咳咳!