In my application i need to get a value from an activity to a service. The value that i need to retrieve is the one i clicked in that activity.
For eg: If i select x[i] element from Activity A, i need to retrieve the value x[i] in a Service S.
How is it possible?
Thanks,
Niki
In the service use this:
public int onStartCommand (Intent intent, int flags, int startId)
{
super.onStartCommand(intent, flags, startId);
Bundle bundle = intent.getExtras();
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With