Skip to content

Instantly share code, notes, and snippets.

View n0ne's full-sized avatar
💭
Working

Oleksandr Podkidyshev n0ne

💭
Working
View GitHub Profile
@n0ne
n0ne / gist:7656407
Last active December 29, 2015 10:19
onResponse:
mBroadcastIntent = new Intent();
mBroadcastIntent.setAction(myReciever.PROCESS_RESPONSE);
mBroadcastIntent.putExtra("value", result);
getActivity().sendBroadcast(mBroadcastIntent);
In Activity/Fragment create class: