gpt4 book ai didi

android - 快速连续多次启动 Intent 服务会导致额外的空值吗?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:05:38 24 4
gpt4 key购买 nike

我们发现一个问题,我们的一个 Intent 服务意外地为我们的一些用户检索了一个 null 字符串。我们无法重现此问题,也不知道它在受影响用户的设备上是随机的还是一致的。受影响的用户与设备类型或 Android 版本之间似乎没有关联。

我正在扩展 IntentService 并实现 handleIntent 方法,如下所示:

@Override
public void handleIntent(Intent intent) {
String action = intent.getAction();

if (action.Equals(ACTION_MARK_UNREAD)) {
String messageKey = intent.getStringExtra(EXTRA_MESSAGE_KEY);

// messageKey is null for some users
}
}

带字段:

public static final String ACTION_MARK_UNREAD = "com.myapp.action.MARK_UNREAD";
public static final String EXTRA_MESSAGE_KEY = "extraMessageKey";

在 fragment 中,我们快速连续启动此服务 6 次:

    for (int i = 0; i < 6; i++) {
Intent i = new Intent(MyIntentService.ACTION_MARK_UNREAD);
i = i.setClass(mContext, MyIntentService.class);
i.putExtra(MyIntentService.EXTRA_MESSAGE_KEY, i.toString());
mContext.startService(i);
}

为什么服务会为 messageKey extra 检索 null 的任何想法?

我们在应用程序的其他区域启动了相同的服务,当这种情况发生时,我们无法确定它来自哪个区域。但是,从日志来看,它似乎来 self 提到的这个 fragment 。日志显示 null 发生时的客户端时间戳比上一次发生后几秒。这可能是因为服务队列移动缓慢,或者我的假设可能是错误的。

最佳答案

我的第一个猜测是许多其他人评论过的编译器问题,我在您的示例中发现了一些其他错误,例如 Equals with upper E

但仅以您的代码为例,我对这种方法进行了很多测试,我得出的第一件事是无论您的调用是在 Fragment 还是 Activity 由于 FragmentContext 与父级 Activity 相同。

阅读 IntentService 文档我们可以读到:

All requests are handled on a single worker thread -- they may take as long as necessary (and will not block the application's main loop), but only one request will be processed at a time.

此处:http://developer.android.com/reference/android/app/IntentService.html

因此我们可以得出结论,您所有的 X 请求都将被一个接一个地处理。

Android 文档中关于 IntentService 的另一部分我们可以读到:

Because most started services don't need to handle multiple requests simultaneously (which can actually be a dangerous multi-threading scenario), it's probably best if you implement your service using the IntentService class.

此处:http://developer.android.com/guide/components/services.html#ExtendingIntentService

根据这些信息,您可以考虑 IntentService 是否是您需要的方法。对吧?

在这里您可以了解如何仅扩展一个服务:http://developer.android.com/guide/components/services.html#ExtendingService

完成,下面我将粘贴我为测试您的方法而编写的代码。

ActivityMainActivity

public class MainActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

for (int i = 0; i < 10; i++) {
Intent intent = new Intent(MyIntentService.MY_ACTION);

intent.setClass(this, MyIntentService.class);
intent.putExtra(MyIntentService.EXTRA, UUID.randomUUID().toString());

startService(intent);
}
}
}

IntentService MyIntentService

public class MyIntentService extends IntentService {

public static final String MY_ACTION = "my.app.namespace.action.myaction";
public static final String EXTRA = "my_extra";

public MyIntentService() {
super("MyIntentService");
}

@Override
protected void onHandleIntent(Intent intent) {
String action = intent.getAction();

if (action.equals(MY_ACTION)) {
String messageKey = intent.getStringExtra(EXTRA);

Log.i(EXTRA, messageKey);
}
}
}

并输出Log

my_extra﹕ b6faeb0a-29fa-442b-b87e-9c7a5f8c35d7
my_extra﹕ 88076250-d455-4084-af5f-c560ba6d5570
my_extra﹕ 21339466-25ab-4aaa-aadd-344555c4c2df
my_extra﹕ 2f935a93-465b-4648-a3cc-60f0c9cc67a4
my_extra﹕ 128653d1-d6af-499f-8725-78158e2e7190
my_extra﹕ e453ae7b-e21a-41fe-bf9c-f45ccfd13edf
my_extra﹕ 2e3fc6aa-e425-41dd-a584-8ab056fb906d
my_extra﹕ a8d90d53-c6cd-4d15-84f9-4064d6972de9
my_extra﹕ 721dd17b-b977-4029-ada3-5999f0eb36e7
my_extra﹕ e83d3277-adc8-47a8-a246-6cd7f6f2735d

关于android - 快速连续多次启动 Intent 服务会导致额外的空值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21541703/

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