选中alertDialog项目时显示toast或progressbar

时间:2013-06-12 05:28:48

标签: android android-alertdialog toast

我有一个带有几个项目的alertDialog。 选择项目时,会有一些Web服务调用 只有当它们完成时,对话框才会关闭。 我想让用户知道他/她等待。

我尝试过使用进度条和Toast。 在Toast版本中,如果我只是展示Toast, 它确实显示 - 但只有在对话框关闭后才会显示。

我还尝试在另一个线程上运行Toast,导致应用程序崩溃。

以下是代码的一些示例:

private void chooseFromClosestSamplePoints(final ArrayList<Place> places) {     
        if (null != places) {
            final String[] items = new String[places.size()];
            for (int i = 0; i < places.size(); i++) {
                Place place = places.get(i);
                String displayText = place.mfactoryName + "," + place.msamplePointName;
                items[i] = displayText;
            }


                    AlertDialog.Builder builder = new AlertDialog.Builder(
                            Main.this);
                    builder.setTitle(R.string.select_sample_point);
                    builder.setItems(items,
                            new DialogInterface.OnClickListener() {

                                @Override
                                public void onClick(DialogInterface dialog,
                                        int which) {    
                                    Place place = places.get(which);                                    
                                    Toast toast = Toast.makeText(getApplicationContext(), "אנא המתן", Toast.LENGTH_LONG);
                                    toast.show();
                                    boolean res = selectPlace(place); //this is the long running WS call
                                    if(!res)
                                    {
                                      mStartButton.setEnabled(false);
                                      showAlert("שגיאה","אנא הגדר מחדש עיר מפעל ונקודת דיגום", false);
                                    }
                                }
                            });
                    builder.show();
                }           
    }

修改 在SelectPlace方法中,有一些代码在UI线程上运行,如下所示:

private boolean selectPlace(Place place){
GetFactories factoryMethod = new GetFactories(mApp, selectedCity);
        factoryMethod.call(); //This calls the WS and awaits results

        final ArrayList<Factory> factories =factoryMethod.getFactories();
        Factory selectedFactory = null;
        for(int i = 0; i < factories.size(); i++)
        {
///Some logic
}

//Some more logic...
}

非常感谢任何帮助。 感谢,

欧麦

1 个答案:

答案 0 :(得分:1)

您可能希望将Web服务调用代码移动到IntentService类,因此在等待Web服务获取响应时不会阻止UI线程。

查看代码,factoryMethod.call();可能会阻止UI线程。