0

在我的应用程序中,有一个按钮可以将图片上传到 Facebook。按下此按钮时,会出现一个警报框以获取用户标题,然后上传图片。现在,如果我在将图片上传到 facebook 时按 BACK 按钮(在给出并OK按下标题后),那么我会再次看到我的活动,但这次当我再次尝试上传图片时,我没有看到警告框(尽管它处于隐形模式,因为如果我点击OK按钮的位置,然后图片就会上传。这里发生了什么?

//Listener to button to upload to facebook
class ButtonListener3 implements View.OnClickListener{

        @Override
    public void onClick(View v) {

        Pic.this.Commentbox();

    }
}


public void Commentbox(){
    value="";
    alert1 = new AlertDialog.Builder(this);

    alert1.setTitle("Write caption");


    // Set an EditText view to get user input 
    final EditText input = new EditText(this);
    alert1.setView(input);

    alert1.setPositiveButton("OK", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int whichButton) {
    value = input.getText().toString();
    Pic.this.fb();
     }
    });

    alert1.setNegativeButton("No, thanks", new DialogInterface.OnClickListener()      {
     public void onClick(DialogInterface dialog, int whichButton) {
       value="";
       Pic.this.fb();
    }
    });

     alert1.show();

}

    public void fb(){
final Facebook facebook=new Facebook(ID);
facebook.authorize(Pic.this, new String[] { "publish_stream" },
        new DialogListener() {

    @Override
    public void onFacebookError(FacebookError e) {
        // TODO Auto-generated method stub
    }

    @Override
    public void onError(DialogError dialogError) {
        // TODO Auto-generated method stub
    }

    @Override
    public void onComplete(Bundle values) {
        postToWall(values.getString(Facebook.TOKEN));                                              
    }

    private  void postToWall(String accessToken) {    


        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        bmp.compress(Bitmap.CompressFormat.PNG, 100, baos);
        byte[] data = baos.toByteArray();
        Bundle bundle = new Bundle();

        bundle.putString(Facebook.TOKEN, accessToken);
        bundle.putByteArray("facebookPictureData", data);
        // The byte array is the data of a picture.
        bundle.putByteArray("picture",     getIntent().getExtras().getByteArray("data"));
        bundle.putString("caption",value); 

        try {
            facebook.request("me/photos", bundle, "POST");
            Toast.makeText(getApplicationContext(),"Picture uploaded to your facebook account successfully",
                    Toast.LENGTH_SHORT).show();

        } catch (FileNotFoundException fileNotFoundException) {
            Toast.makeText(getApplicationContext(),"Picture upload failed, try again",
                    Toast.LENGTH_SHORT).show();
        } catch (MalformedURLException malformedURLException) {
            Toast.makeText(getApplicationContext(),"Picture upload failed, try again",
                    Toast.LENGTH_SHORT).show();
        } catch (IOException ioException) {
            Toast.makeText(getApplicationContext(),"Picture upload failed, try again",
                    Toast.LENGTH_SHORT).show();
        }
    }


    @Override
    public void onCancel() {
        // TODO Auto-generated method stub
    }
});

}
4

1 回答 1

1

旋转设备以确定窗口是否不可见(它将保持不可见)或是否存在重绘问题(它将出现)。

重绘问题不是 Android 错误,而是您应用的设计问题。您不应该在主 (UI) 线程上采取需要花费数秒时间的操作,因为这样做会在操作期间阻止重绘。

您可以使用@azgolfer 评论中的提示(将上传重构为AsyncTask)。创建您的子类AsyncTaskfb在其doInBackground方法中执行。创建它的实例并executeOnClick处理程序。用于onPostExecute宣布已完成的上传并创建一个ProgressBar用于显示任务进度的。

事实上,你有太多的OnClick处理程序代码(就持续时间而言)。

或者,您可以随时调用invalidate以实现类似的效果,例如设备旋转:

ViewGroup everything = findViewById (R.id.mainLayout);
everything.invalidate();

但这不是推荐的设计,如果您决定采用这种方式,您可能会发现自己在多个方面与框架作斗争。

于 2012-06-22T21:00:21.313 回答