Android-如何从Activity中传递参数到Service中?

发布于 2017-02-01 11:54:23 字数 810 浏览 1384 评论 1

我在bind 一个service的时候,我想传递一个参数过去,可是发现调试的结果是Null。代码如下:
Activity:

istenLocationService mService;
@Override
public void onCreate(Bundle savedInstanceState) {
...
Intent intent = new Intent(this, ListenLocationService.class);
intent.putExtra("From", "Main");
bindService(intent, mConnection, Context.BIND_AUTO_CREATE);
...
}

private ServiceConnection mConnection = new ServiceConnection() {

public void onServiceConnected(ComponentName className,
IBinder service) {
LocalBinder binder = (LocalBinder) service;
mService = binder.getService();
}

public void onServiceDisconnected(ComponentName arg0) {
}
};

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瑾兮 2017-07-25 15:04:54

最后我通过接口的方式解决了。

声明一个接口,我会在activity中调用这些函数都在这里列出来

 public interface ILocationService {
public void StartListenLocation(Location location);
}

在Binder中实现这个接口

 public class MyBinder extends Binder implements ILocationService {
... ...

public void StartListenLocation(Location location) {
// implement your method properly
}

... ...
}

然后,在activity中,我直接就调用这个函数,了,参数就可以传递了.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文