Layout error: 106 width: 0 ellipse Width: 0

I created Dialog for logging into Facebook, it works great on HTC Desire and the emulator, but whenever I try to open it in Ericsson Xperia (2.3.2), the dialog box does not come in Ericsson, the full-screen url mode appears on the screen and the loading time that it disappeared. I can hit URl, the loding page in my screen and disappear, and in my Log Cat its error shows that TAG = "SkLayout_wtle" haivng "layout error: 106 width: 0 ellipsizedWidth: 0" in value.

This is the url that I click.

FacebookMobileUrl

If any information is required, let me know.

+3
source share
1 answer

force_login_auth .

facebook.java int public static final int FORCE_DIALOG_AUTH = -1; int , :

 public void authorize(Activity activity, final DialogListener listener) {
        authorize(activity, new String[] {}, FORCE_DIALOG_AUTH,
                listener);
    } 

public void authorize(Activity activity, String[] permissions,
            final DialogListener listener) {
        authorize(activity, permissions, FORCE_DIALOG_AUTH, listener);
    }

sso, fb, , .

0

All Articles