Back to project page SevenWonders.
The source code is released under:
Apache License
If you think the Android project SevenWonders listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package skylight1.sevenwonders.social.facebook; //from w w w .j a v a 2 s .co m import android.content.Context; import android.widget.Toast; public class FacebookUtil { public static void showFacebookErrorToast(Context context) { Toast toast = Toast.makeText(context, "Sorry, there was an error communicating with Facebook.", Toast.LENGTH_LONG); toast.show(); } }