我遇到了进度条微调器的问题:
ProgressBarSpinner spinner = new ProgressBarSpinner();
spinner.execute(Spin);
Login LoginUser = new Login();
if(LoginUser.LoginUser(UserNameValue.getText().toString(), PasswordValue.getText().toString())) {
MessageBox("Login information", "You've been successfully logged in, press OK to continue.");
Document XMLInfo = null;
Passphrase = PasswordValue.getText().toString();
try {
XMLInfo = XMLfromString(LoginUser.ProfileXML);
XML_ProfileParser(XMLInfo);
TickerString = FillProfileSlider(XMLInfo);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Spin.setVisibility(ProgressBar.GONE);
setContentView(R.layout.profile);
TextView ProfileTicker = (TextView)findViewById(R.id.ProfileTicker);
TextView UserInformation = (TextView)findViewById(R.id.NameInfo);
TextView MoneyLabel = (TextView)findViewById(R.id.MoneyInfo);
UserInformation.setText(ProfileInfo.get("FirstName") + " " + ProfileInfo.get("LastName"));
MoneyLabel.setText(ProfileInfo.get("Money") + " Kr");
if(Integer.parseInt(ProfileInfo.get("Messages")) >= 1) {
ImageView MessageImage = (ImageView)findViewById(R.id.MailImage);
MessageImage.setOnClickListener(ImageListener);
MessageImage.setVisibility(ImageView.VISIBLE);
}
ProfileTicker.setText(Html.fromHtml(TickerString));
}
else {
Spin.setVisibility(ProgressBar.GONE);
MessageBox("Login information", "The submitted login information seems to be invalid.");
}
当用户点击登录时执行此操作。 Spin是一个全局进度条变量。下面是用于处理微调器的Async类。
private class ProgressBarSpinner extends AsyncTask<ProgressBar, Integer, ProgressBar>
{
protected ProgressBar doInBackground(ProgressBar...Spinner) {
return Spinner[0];
}
protected void onProgressUpdate(Integer... progress) {
}
protected void onPostExecute(ProgressBar Spinner) {
Spinner.setVisibility(ProgressBar.VISIBLE);
Spinner.showContextMenu();
}
}
问题:如果我试着写
Spin.setVisibility(ProgressBar.GONE);
在登录授权之后,微调器根本不会显示。但是如果我删除了ProgressBar.Gone部分,则会显示微调器。 但是,如果该部分存在,则应用程序似乎在它继续之前“挂起”(记录用户或显示错误消息,告知用户名或密码错误)。
问题是什么?
我确信登录的速度不是很快,以至于微调器在设置为GONE之前没有时间显示。
答案 0 :(得分:0)
您需要在创建AsyncTask之前将微调器设置为可见,并将其隐藏在onPostExecute中,如:
mySpinner.setVisibility(View.VISIBLE);
myAsyncTask.Execute(); // etc, etc
myAsyncTask:
protected void onPostExecute(ProgressBar Spinner) {
Spinner.setVisibility(View.GONE);
}