如果要在警报对话框中加载列表之前显示进度条,请使用 AsyncTask 。
例如:
private class LoadingTask extends AsyncTask<String, Void, String> {
@Override
protected void onPreExecute(){
super.onPreExecute();
progressDialog.show();
}
@Override
protected String doInBackground(String... str) {
String response = "";
// Call Web Service here and return response
response = API.getDealsByCategory(str[0], str[1]);
// e.g.: above is my WebService Function which returns response in string
return response;
}
@Override
protected void onPostExecute(String result) {
super.onPostExecute(result);
System.out.println("result is: "+result);
new Thread(new Runnable() {
@Override
public void run() {
progressDialog.dismiss();
}
}).start();
// SHOW THE ALERT DIALOG HERE.....
}
}
如下调用 AsyncTask :
LoadingTask 任务 = new LoadingTask(); task.execute("YOUR_PARAMETER","YOUR_PARAMETER");
//================================
只需将下面的代码放在 AsyncTask 的 Post Execution 中,你就会得到你想要的。
final CharSequence[] items = {"","50","100","150","200","250","300","350","400","450","500","550","600","650","700","750","800","850","900","1000"};
AlertDialog.Builder builder = new AlertDialog.Builder(getParent());
builder.setTitle("Select Country");
//builder.setI
builder.setItems(items, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int item) {
//Toast.makeText(getApplicationContext(), con.get(item).getCountrName(), Toast.LENGTH_SHORT).show();
selectDistanceTV.setText(items[item]);
System.out.println("Item is: "+items[item]);
/*CONTRY_ID = con.get(item).getCountryId();
stateET.requestFocus();*/
}
});
AlertDialog alert = builder.create();
alert.show();
希望它会帮助你。
如果您需要有关如何使用 AsyncTask 的更多帮助,请参阅此处:Vogella
如有任何疑问,请评论我。
享受编码... :)