final Dialog Alert_Dialog = new Dialog(MainList.this);
Alert_Dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
Alert_Dialog.setContentView(R.layout.alert_dialog_progressbar);
((TextView)Alert_Dialog.findViewById(R.id.txtMessage)).setText(R.string.please_wait_);
Alert_Dialog.setCancelable(false);
Alert_Dialog.show();
((Button) Alert_Dialog.findViewById(R.id.btnCancel)).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Alert_Dialog.cancel();
}
});
次に、次のように AsynTask を呼び出します。
String res="";
try{
SendingWebPageTask sendMaster=new SendingWebPageTask();
res=sendMaster.execute(UrlMaster).get();
}catch (Exception e) {
e.printStackTrace();
}
私はresponceのベースで私に応答するURLの値を返しています私は2番目のURLを呼び出していますが、この方法で非同期タスクから値を返すと、ダイアログボックスが表示されず、asynTaskが完了できないまでデバイスがハングするという問題があります誰でも私を助けることができます。