Skip to content

Instantly share code, notes, and snippets.

@tagrudev
Last active August 29, 2015 13:58
Show Gist options
  • Save tagrudev/9974068 to your computer and use it in GitHub Desktop.
Save tagrudev/9974068 to your computer and use it in GitHub Desktop.
Hydra.getInstance().getClient().post(getActivity(), Fields.GRAPH_CONTACTS_URL, params, new JsonHttpResponseHandler() {
@Override
public void onSuccess(int statusCode, Header[] headers, JSONObject response) {
Crouton.makeText(getActivity(), "Your question was sent successfully.", Style.CONFIRM, Configuration.DURATION_SHORT).show();
}
@Override
public void onFailure(int statusCode, Header[] headers, Throwable e, JSONObject response) {
Crouton.makeText(getActivity(), R.string.no_internet_connection, Style.ALERT, Configuration.DURATION_SHORT).show();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment