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 android app from one of the activity iam opening the facebook feed dailog, since it takes time to load i tried to implement a progress dailog before the feed dailog starts, in oncreate() i have the progressdailog open but it is not working here the dailog is opening but no progress dailog, then i tried to put in AsyncTask ,now i can see the progressDailog but the fb feeddailog is not showing..below is my 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 ProgressDialog pd = null;
     private Object data = null;

    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);

         //this.pd = ProgressDialog.show(this, "Working..", "Downloading Data...", true, false);


        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("Please Wait.............. ");
        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);
        //Looper.prepare();
        //new MyFetchTask().execute();
        //Looper.loop(); 



    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 {
        try {
            postToWall(messageToPost);
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

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





    /* public class MyFetchTask extends AsyncTask<Object, Object, Object>
    {

        @Override
        protected Object doInBackground(Object... params) {
            // TODO Auto-generated method stub

            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 {
                try {
                    postToWall(messageToPost);
                } catch (Exception e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }





            }

            return null;
        }

        @Override
        protected void onPostExecute(Object result) {

            ShareOnFacebook.this.data = result;

            if (ShareOnFacebook.this.pd != null) {
                ShareOnFacebook.this.pd.dismiss();


        }

    }

    }
*/






     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) {


                postToWall(messageToPost);


            }
        }

i am struck and not sure where iam going wrong...getting below error log

 FATAL EXCEPTION: main
12-27 18:52:38.235: E/AndroidRuntime(6693): java.lang.RuntimeException: Unable to start activity ComponentInfo{org.appright.myapp/org.apps.myapp.activity.ShareOnFacebook}: java.lang.RuntimeException: Only one Looper may be created per thread
12-27 18:52:38.235: E/AndroidRuntime(6693):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2100)
12-27 18:52:38.235: E/AndroidRuntime(6693):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2125)
12-27 18:52:38.235: E/AndroidRuntime(6693):     at android.app.ActivityThread.access$600(ActivityThread.java:140)
12-27 18:52:38.235: E/AndroidRuntime(6693):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1227)
12-27 18:52:38.235: E/AndroidRuntime(6693):     at android.os.Handler.dispatchMessage(Handler.java:99)
12-27 18:52:38.235: E/AndroidRuntime(6693):     at android.os.Looper.loop(Looper.java:137)
12-27 18:52:38.235: E/AndroidRuntime(6693):     at android.app.ActivityThread.main(ActivityThread.java:4898)
12-27 18:52:38.235: E/AndroidRuntime(6693):     at java.lang.reflect.Method.invokeNative(Native Method)
12-27 18:52:38.235: E/AndroidRuntime(6693):     at java.lang.reflect.Method.invoke(Method.java:511)
12-27 18:52:38.235: E/AndroidRuntime(6693):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1008)
12-27 18:52:38.235: E/AndroidRuntime(6693):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:775)
12-27 18:52:38.235: E/AndroidRuntime(6693):     at dalvik.system.NativeStart.main(Native Method)
12-27 18:52:38.235: E/AndroidRuntime(6693): Caused by: java.lang.RuntimeException: Only one Looper may be created per thread
12-27 18:52:38.235: E/AndroidRuntime(6693):     at android.os.Looper.prepare(Looper.java:78)
12-27 18:52:38.235: E/AndroidRuntime(6693):     at android.os.Looper.prepare(Looper.java:73)
12-27 18:52:38.235: E/AndroidRuntime(6693):     at org.appright.myapp.activity.ShareOnFacebook.onCreate(ShareOnFacebook.java:96)

Any help or suggestions are really appreciated.

share|improve this question

1 Answer

up vote 0 down vote accepted

The Facebook feed dialog already has its own loading/progress spinner when its loading the popup dialog if you implemented it correctly.

My app uses the feed dialog and it already has its own progress dialog. Try downloading our sample app and verify if you see a progress dialog when you tap on Update Status.

share|improve this answer
Hi jesse chen..yes your app has that loading dailog ...but i implemented my custom dailog so getting problem with that... – teekib Dec 28 '12 at 5:31
I'm saying that you don't need to implement your own custom dialog because when you call the Facebook feed dialog it pops up with its own loading dialog. – Jesse Chen Dec 28 '12 at 5:49
yes i know but your dailogs are different in webversion and mobile fb version..i want it to look like exactly as web version feed dailog so implement custom dailog – teekib Dec 28 '12 at 5:56

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.