将值从IntentService传递到Service

时间:2013-03-07 16:35:50

标签: android

我想将一个变量从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(...)方法吗?

0 个答案:

没有答案