Last active
August 29, 2015 13:58
-
-
Save tagrudev/9974068 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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