Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my app i have a icon , when i click the icon, using intent the facebook dailog will be opened,

Intent menuSettingsIntent = new Intent(CityAttractions.this, ShareOnFacebook.class);
menuSettingsIntent.putExtra("facebookMessage", "Msg");
startActivity(new Intent(menuSettingsIntent).addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT));

now i want a progress dailog before the Facebook dialog starts as it it taking time to load, what iam trying is i am placing the post to wall method in asynchronous task and calling the progress dailog in pre execute method.

Below is my Facebook activity code

public class ShareOnFacebook extends Activity {
        private String TAG = ShareOnFacebook.class.getSimpleName();
        private static final String APP_ID = "130985523722347";
        private static final String[] PERMISSIONS = new String[] { "publish_stream" };

        private static final String TOKEN = "access_token";
        private static final String EXPIRES = "expires_in";
        private static final String KEY = "facebook-credentials";

        private Facebook facebook;
        private String messageToPost;
        private ProgressDialog dialogFBMessage;
        public boolean saveCredentials(Facebook facebook) {
                Editor editor = getApplicationContext().getSharedPreferences(KEY,
                                Context.MODE_PRIVATE).edit();
                editor.putString(TOKEN, facebook.getAccessToken());
                editor.putLong(EXPIRES, facebook.getAccessExpires());
                return editor.commit();
        }

        public boolean restoreCredentials(Facebook facebook) {
                SharedPreferences sharedPreferences = getApplicationContext()
                                .getSharedPreferences(KEY, Context.MODE_PRIVATE);
                facebook.setAccessToken(sharedPreferences.getString(TOKEN, null));
                facebook.setAccessExpires(sharedPreferences.getLong(EXPIRES, 0));
                return facebook.isSessionValid();
        }

        @TargetApi(9)
        @SuppressLint({ "NewApi", "NewApi", "NewApi" })
        @Override
        protected void onCreate(Bundle savedInstanceState) {

                super.onCreate(savedInstanceState);




                if (android.os.Build.VERSION.SDK_INT > 9) {
                        StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder()
                                        .permitAll().build();
                        StrictMode.setThreadPolicy(policy);
                }
                dialogFBMessage = new ProgressDialog(this);
                dialogFBMessage.setCanceledOnTouchOutside(false);
                dialogFBMessage.setProgressStyle(ProgressDialog.STYLE_SPINNER);
                dialogFBMessage.setMessage("Loading............................ ");
                dialogFBMessage.show();
                Log.d(TAG, "FBMessage Loading Step 01");
                facebook = new Facebook(APP_ID);
                restoreCredentials(facebook);

                requestWindowFeature(Window.FEATURE_NO_TITLE);

                // setContentView(R.layout.facebookdialog);


           // new postToWall().execute(facebook);


                String facebookMessage = getIntent().getStringExtra("facebookMessage");
                if (facebookMessage == null) {
                        facebookMessage = "Post From My Neighborhood "
                                        + new java.util.Date().getTime();
                }
                messageToPost = facebookMessage;
                if (!facebook.isSessionValid()) {
                        loginAndPostToWall();
                } else {
                        //postToWall(messageToPost);


                        new postToWall().execute(facebook);


                }
        }

        public void loginAndPostToWall() {
                facebook.authorize(ShareOnFacebook.this, PERMISSIONS,
                                Facebook.FORCE_DIALOG_AUTH, new LoginDialogListener());
        }





        private class postToWall extends AsyncTask<Facebook, Integer, String> {

            ProgressDialog pdialog;
            final Dialog dialog = new Dialog(ShareOnFacebook.this, R.style.FullHeightDialog);

            protected void onPreExecute() {
                pdialog = ProgressDialog.show(ShareOnFacebook.this, "","Please wait...", true);
            }
            @Override
                protected String doInBackground(Facebook... params) {

                        dialog.setContentView(R.layout.customdailog);
                        String fbUser = "";
                        String neighbourhood = "";
                        final Bundle parameters = new Bundle();
                        try {




                                JSONObject me = new JSONObject(facebook.request("me"));        
                                String id = me.getString("id");
                                // String namespace=me.getString("namespace");
                                // Log.d(TAG, "FB namespace----->"+namespace);
                                ImageView picture;
                                ImageView map;
                                TextView properties;
                                TextView details;
                                String lang = Constants.searchLocation.getLongitude() + "";
                                String lat = Constants.searchLocation.getLatitude() + "";
                                String url = Constants.fbindexURL + "lang=" + lang + "&lat=" + lat
                                                + "&userid=" + fbUser;
                                String mapKey = Constants.API_KEY;
                                neighbourhood = Constants.loadedNeighborhood.getName();

                                details = (TextView) dialog.findViewById(R.id.textView1);
                                details.setText(parameters.getString("properties"));

                                fbUser = me.getString("name");
                                picture = (ImageView) dialog.findViewById(R.id.imageView1);
                                properties = (TextView) dialog.findViewById(R.id.textView2);
                                URL image_value = new URL("http://graph.facebook.com/" + id + "/picture");
                                Bitmap profPic = BitmapFactory.decodeStream(image_value.openConnection().getInputStream());
                                picture.setImageBitmap(profPic);
                                properties.setText(getString(R.string.app_name));
                                map = (ImageView) dialog.findViewById(R.id.imageView5);
                                URL image_map = new URL("http://maps.googleapis.com/maps/api/staticmap?markers=" + lat + "%2C" + lang + "&zoom=12&size=300x300&key=" + mapKey + "&sensor=false&callback=myCallback&param=myParam");
                                Bitmap mapimg = BitmapFactory.decodeStream(image_map.openConnection().getInputStream());
                                map.setImageBitmap(mapimg);

                                TextView via = (TextView) dialog.findViewById(R.id.textView3);
                                via.setText("Via");

                                Log.d(TAG, "FB User----->" + fbUser);
                        } catch (Exception e) {
                                Log.e(TAG, "FB User----->", e);

                        }

                        String lang = Constants.searchLocation.getLongitude() + "";
                        String lat = Constants.searchLocation.getLatitude() + "";
                        String url = Constants.fbindexURL + "lang=" + lang + "&lat=" + lat
                                        + "&userid=" + fbUser;
                        String mapKey = Constants.API_KEY;// getResources().getString(R.string.apikey)
                        String mapUrl = "http://maps.googleapis.com/maps/api/staticmap?markers="+ lat+ "%2C"+ lang+ "&zoom=12&size=300x300&key="+ mapKey+ "&sensor=false&callback=myCallback&param=myParam";
                        Log.e(TAG, "url----->" + url);
                        Log.e(TAG, "mapUrl" + mapUrl);

                        neighbourhood = Constants.loadedNeighborhood.getName();

                        parameters.putString("name", neighbourhood);
                        parameters.putString("caption", "my neighborhood");
                        parameters.putString("description", "click on below link..");
                        parameters.putString("link", mapUrl);
                        parameters.putString("properties", "{\" \": {\"text\":\"Reply / Recommend\", \"href\": \"" + url + "\"}}");
                        try {



                                final EditText edittext = (EditText) dialog.findViewById(R.id.fbedittext);

                                Button dialogButton = (Button) dialog.findViewById(R.id.fbshare);
                                Button dialogcancelButton = (Button) dialog.findViewById(R.id.fbcancel);

                                dialogcancelButton.setOnClickListener(new OnClickListener() {

                                        public void onClick(View v) {
                                                dialog.dismiss();

                                                finish();
                                        }

                                });
                                dialogButton.setOnClickListener(new OnClickListener() {

                                        public void onClick(View v) {

                                                String messageText = edittext.getText().toString();
                                                if (messageText != null) {

                                                        parameters.putString("message", messageText);
                                                        try {
                                                                facebook.request("me");
                                                                String response = facebook.request("me/feed",
                                                                                parameters, "POST");
                                                                Log.d("Tests", "got response: " + response);
                                                                if (response == null || response.equals("")
                                                                                || response.equals("false")) {
                                                                        showToast("Blank response.");
                                                                } else {
                                                                        showToast("Message posted to your facebook wall!");
                                                                }
                                                                finish();
                                                        } catch (Exception e) {
                                                                showToast("Failed to post to wall!");
                                                        }

                                                }
                                        }

                                });

                                try {
                                        dialog.show();
                                } catch (Exception e) {
                                        // TODO Auto-generated catch block
                                        e.printStackTrace();
                                }
                                dialogFBMessage.dismiss();
                                Log.d(TAG, "FBMessage Loading Step 02");
                        } catch (Exception e) {
                                showToast("Failed to post to wall!");
                                e.printStackTrace();
                                finish();
                        }
                        return null;
                }
        }






        /* public void postToWall(String message) {


                 final Dialog dialog = new Dialog(this, R.style.FullHeightDialog);
                dialog.setContentView(R.layout.customdailog);
                String fbUser = "";
                String neighbourhood = "";
                final Bundle parameters = new Bundle();
                try {




                        JSONObject me = new JSONObject(facebook.request("me"));        
                        String id = me.getString("id");
                        // String namespace=me.getString("namespace");
                        // Log.d(TAG, "FB namespace----->"+namespace);
                        ImageView picture;
                        ImageView map;
                        TextView properties;
                        TextView details;
                        String lang = Constants.searchLocation.getLongitude() + "";
                        String lat = Constants.searchLocation.getLatitude() + "";
                        String url = Constants.fbindexURL + "lang=" + lang + "&lat=" + lat
                                        + "&userid=" + fbUser;
                        String mapKey = Constants.API_KEY;
                        neighbourhood = Constants.loadedNeighborhood.getName();

                        details = (TextView) dialog.findViewById(R.id.textView1);
                        details.setText(parameters.getString("properties"));

                        fbUser = me.getString("name");
                        picture = (ImageView) dialog.findViewById(R.id.imageView1);
                        properties = (TextView) dialog.findViewById(R.id.textView2);
                        URL image_value = new URL("http://graph.facebook.com/" + id + "/picture");
                        Bitmap profPic = BitmapFactory.decodeStream(image_value.openConnection().getInputStream());
                        picture.setImageBitmap(profPic);
                        properties.setText(getString(R.string.app_name));
                        map = (ImageView) dialog.findViewById(R.id.imageView5);
                        URL image_map = new URL("http://maps.googleapis.com/maps/api/staticmap?markers=" + lat + "%2C" + lang + "&zoom=12&size=300x300&key=" + mapKey + "&sensor=false&callback=myCallback&param=myParam");
                        Bitmap mapimg = BitmapFactory.decodeStream(image_map.openConnection().getInputStream());
                        map.setImageBitmap(mapimg);

                        TextView via = (TextView) dialog.findViewById(R.id.textView3);
                        via.setText("Via");

                        Log.d(TAG, "FB User----->" + fbUser);
                } catch (Exception e) {
                        Log.e(TAG, "FB User----->", e);

                }

                String lang = Constants.searchLocation.getLongitude() + "";
                String lat = Constants.searchLocation.getLatitude() + "";
                String url = Constants.fbindexURL + "lang=" + lang + "&lat=" + lat
                                + "&userid=" + fbUser;
                String mapKey = Constants.API_KEY;// getResources().getString(R.string.apikey)
                String mapUrl = "http://maps.googleapis.com/maps/api/staticmap?markers="+ lat+ "%2C"+ lang+ "&zoom=12&size=300x300&key="+ mapKey+ "&sensor=false&callback=myCallback&param=myParam";
                Log.e(TAG, "url----->" + url);
                Log.e(TAG, "mapUrl" + mapUrl);

                neighbourhood = Constants.loadedNeighborhood.getName();

                parameters.putString("name", neighbourhood);
                parameters.putString("caption", "my neighborhood");
                parameters.putString("description", "click on below link..");
                parameters.putString("link", mapUrl);
                parameters.putString("properties", "{\" \": {\"text\":\"Reply / Recommend\", \"href\": \"" + url + "\"}}");
                try {



                        final EditText edittext = (EditText) dialog.findViewById(R.id.fbedittext);

                        Button dialogButton = (Button) dialog.findViewById(R.id.fbshare);
                        Button dialogcancelButton = (Button) dialog.findViewById(R.id.fbcancel);

                        dialogcancelButton.setOnClickListener(new OnClickListener() {

                                public void onClick(View v) {
                                        dialog.dismiss();

                                        finish();
                                }

                        });
                        dialogButton.setOnClickListener(new OnClickListener() {

                                public void onClick(View v) {

                                        String messageText = edittext.getText().toString();
                                        if (messageText != null) {

                                                parameters.putString("message", messageText);
                                                try {
                                                        facebook.request("me");
                                                        String response = facebook.request("me/feed",
                                                                        parameters, "POST");
                                                        Log.d("Tests", "got response: " + response);
                                                        if (response == null || response.equals("")
                                                                        || response.equals("false")) {
                                                                showToast("Blank response.");
                                                        } else {
                                                                showToast("Message posted to your facebook wall!");
                                                        }
                                                        finish();
                                                } catch (Exception e) {
                                                        showToast("Failed to post to wall!");
                                                }

                                        }
                                }

                        });

                        try {
                                dialog.show();
                        } catch (Exception e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                        }
                        dialogFBMessage.dismiss();
                        Log.d(TAG, "FBMessage Loading Step 02");
                } catch (Exception e) {
                        showToast("Failed to post to wall!");
                        e.printStackTrace();
                        finish();
                }
        }*/

        class LoginDialogListener implements DialogListener {
                public void onComplete(Bundle values) {
                        saveCredentials(facebook);
                        if (messageToPost != null) {


                                new postToWall().execute(facebook);


                        }
                }

                public void onFacebookError(FacebookError error) {
                        showToast("Authentication with Facebook failed!");
                        finish();
                }

                public void onError(DialogError error) {
                        showToast("Authentication with Facebook failed!");
                        finish();
                }

                public void onCancel() {
                        showToast("Authentication with Facebook cancelled!");
                        finish();
                }
}

        private void showToast(String message) {
                Toast.makeText(getApplicationContext(), message, Toast.LENGTH_SHORT)
                                .show();
        }

        private void goBack() {
                finish();
        }



        @Override
        public void onBackPressed() {
                super.onBackPressed();
                goBack();
        }

        @Override
        public boolean onKeyUp(int keyCode, KeyEvent event) {
                if (keyCode == KeyEvent.KEYCODE_BACK) {
                        goBack();
                        return true;
                }
                return super.onKeyUp(keyCode, event);
        }


        }

Am i doing correct ? Any help is really appreciated

share|improve this question
possible duplicate of Facebook feedDailog not working with Asynctask – EdChum Dec 27 '12 at 22:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.