Use Intent on Activity put values ββin puExtra
Intent intent = new Intent(current.this, YourClass.class);
intent.putextra("keyName","value");
and then call StartService to call the OnStart method .. in the service, get the values ββin OnStart using the intent
Bundle extras = getIntent().getExtras();
if (extras != null)
{
String value = extras.getString("key");
}