gpt4 book ai didi

android - getIntent() 方法在 android 服务的 onStartCommand() 方法内部未定义

转载 作者:太空狗 更新时间:2023-10-29 15:55:15 25 4
gpt4 key购买 nike

有谁知道为什么我的 getIntent() 方法在 android 服务和 onStartCommand() 方法内部未定义?

   @Override
public int onStartCommand(Intent intent, int flags, int startId){
super.onStartCommand(intent, startId, startId);

Intent i = getIntent();
Bundle extras = i.getExtras();
filename = extras.getString("filename");


return START_STICKY;
}

最佳答案

因为 Intent 作为函数的参数传递...

onStartCommand(Intent intent, ...
Bundle extras = intent.getExtras();

关于android - getIntent() 方法在 android 服务的 onStartCommand() 方法内部未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12910283/

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