我想将一个变量从IntentService传递给Service。
假设我有:MyService.java和MyIntentService.java
public class MyService extends Service {
public static String myString = "";
}
public class MyIntentService extends IntentService {
protected void onHandleIntent(Intent intent)
{
MyService.myString = "My New String Value";
}
}
这样工作吗?或者我应该使用Intent.putextra(...)方法吗?