简单警报对话问题 - Android

时间:2012-06-26 20:16:50

标签: java android facebook android-alertdialog

我正在制作一款将照片上传到脸谱相册的应用程序。该应用程序上传照片正常,没有问题。如果我硬编码,我也可以在照片上加上标题。我要做的是创建一个警告对话框,捕获用户标题,然后在上传图片之前将其放在包中。发生的事情是照片上传然后我得到对话框输入标题。

以下是弹出警告对话框的方法......

public String createAlert() {      
        AlertDialog.Builder alert = new AlertDialog.Builder(this);                 
          alert.setTitle("Enter Caption for Photo");  
          alert.setMessage("Caption :");
          final EditText input = new EditText(this); 
          alert.setView(input);

          alert.setPositiveButton("Ok", new DialogInterface.OnClickListener() {  
                public void onClick(DialogInterface dialog, int whichButton) {  
                    imageCaption = input.getText().toString();
                    return;                  
                   }  
                 });  

                alert.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {

                    public void onClick(DialogInterface dialog, int which) {
                        // TODO Auto-generated method stub
                        return;   
                    }
                });
               AlertDialog helpDialog = alert.create();
               helpDialog.show();
               return imageCaption;

  }

现在这是捆绑并上传到Facebook ......

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);        
        switch (requestCode) {
        case PICK_EXISTING_PHOTO_RESULT_CODE: {   

        if (resultCode == RESULT_OK){
              Uri photoUri = data.getData();
              String imagePath = getPath(photoUri);
              byte[] data1 = null;


                Bitmap bi = BitmapFactory.decodeFile(imagePath);
                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                bi.compress(Bitmap.CompressFormat.JPEG, 100, baos);
                data1 = baos.toByteArray();

                Bundle params = new Bundle();
                params.putString(Facebook.TOKEN, facebook.getAccessToken());
                params.putString("caption", createAlert() );
                params.putByteArray("photo", data1);

                try {
                    facebook.request("me/photos",params,"POST");
                } catch (FileNotFoundException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (MalformedURLException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } 
              }


        break;
        }
        default: {
        facebook.authorizeCallback(requestCode, resultCode, data);
        break;
        }


    }

    }

1 个答案:

答案 0 :(得分:0)

当您的createAlert方法完成时,用户尚未输入任何内容。显示对话框的事件刚刚添加到系统消息中,将在代码停止运行后将来处理。然后你的代码继续发布facebook帖子。然后会显示对话框。然后,当单击正确的东西时,OnClickListener中的代码就会运行。

您需要在对话框操作发生后发送Facebook帖子。我想这样做的直接方法是将createAlert方法内联到你现在调用它的行的正上方。然后将其余的Facebook代码粘贴在onClick上。然后,这会给你正确的顺序,你可以再次将方法分解为方法。

只是意识到调用show不会立即执行任何操作,并且onclick中的代码也不会立即运行。这只是排队事件并指定分别在另一个事件发生时发生的事情。这是基于事件的编程,就像许多GUI API一样。

编辑:我将尝试编辑您的代码以说明如何使其工作。但是,你没有发布足够的内容进行编译,因此可能需要进行一些清理工作。这里:

protected void onActivityResult(final int requestCode, final int resultCode, final Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    switch (requestCode) {
        case PICK_EXISTING_PHOTO_RESULT_CODE:

            if ( RESULT_OK == resultCode) {
                final Uri photoUri = data.getData();
                createAlert(photoUri);
            }

            break;
        default:
            facebook.authorizeCallback(requestCode, resultCode, data);
            break;
    }
}

public void createAlert(final Uri photoUri) {
    final AlertDialog.Builder alert = new AlertDialog.Builder(this);
    alert.setTitle("Enter Caption for Photo");
    alert.setMessage("Caption :");

    final EditText input = new EditText(this);
    alert.setView(input);

    alert.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
        public void onClick(final DialogInterface dialog, final int whichButton) {
            final String caption = input.getText().toString();
            postToFacebook(photoUri, caption);
        }
    });

    alert.setNegativeButton("Cancel", null);
    final AlertDialog helpDialog = alert.create();
    helpDialog.show();
}

private void postToFacebook(final Uri photoUri, final String caption) {
    final String imagePath = getPath(photoUri);
    final byte[] data1 = null;

    Bitmap bi = BitmapFactory.decodeFile(imagePath);
    final ByteArrayOutputStream baos = new ByteArrayOutputStream();
    bi.compress(Bitmap.CompressFormat.JPEG, 100, baos);
    data1 = baos.toByteArray();
    bi.recycle();
    bi = null;

    final Bundle params = new Bundle();
    params.putString(Facebook.TOKEN, facebook.getAccessToken());
    params.putString("caption", caption);
    params.putByteArray("photo", data1);

    try {
        facebook.request("me/photos", params, "POST");
    } catch (final FileNotFoundException e) {
        e.printStackTrace();
    } catch (final MalformedURLException e) {
        e.printStackTrace();
    } catch (final IOException e) {
        e.printStackTrace();
    }
}