gpt4 book ai didi

android - 在服务中调用 getIntent 方法

转载 作者:IT王子 更新时间:2023-10-28 23:27:47 28 4
gpt4 key购买 nike

我必须将参数从 MyActivity.class 传递给 TestService.class。 MyActivity 是一个 Activity 类,而 TestService 是我为发送消息而制作的一个服务。我必须将参数从 Activity 传递给服务,但是当我在服务类中调用 Intent i = getIntent(); 时,我收到一个错误 getIntent() is undefined .

那么,如何将参数从我的 Activity 发送到 Service?

最佳答案

像这样开始你的服务;

 Intent ir=new Intent(this, Service.class); 
ir.putExtra("data", data);
this.startService(ir);

您附加您的数据作为额外的 Intent 。

然后从服务中检索数据;

data=(String) intent.getExtras().get("data"); 

因此,您可以从 onHandleIntent 或 onStartCommand Intent 参数访问您的参数。 (取决于您正在运行的服务类型)例如;

服务

protected void onStartCommand (Intent intent, int flags, int startId) {
data=(String) intent.getExtras().get("data");
}

public int onStartCommand (Intent intent, int flags, int startId)

IntentService

protected void onHandleIntent(Intent intent) {
data=(String) intent.getExtras().get("data");
}

protected abstract void onHandleIntent (Intent intent)

关于android - 在服务中调用 getIntent 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11949248/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com