Skip to main content

All Questions

0 votes
0 answers
742 views

how to send data from background service to activity?

i try almost code in the internet, but i can't solve it. i want to send data from specific method in the service to activity. i use intent(putExtra), but it doesn't go to activity class. here is my ...
helloinparis's user avatar
2 votes
1 answer
11k views

Other way for getActivity() use in service Android java

In my PollFragment.java that able to call new PollTask((MainActivity)getActivity()).execute((Void)null); And in my PollTask.java public PollTask(MainActivity activity){ super(activity); ...
cchua's user avatar
  • 213