最多可以创建多少个工作线程?

发布于 2024-12-15 01:18:40 字数 568 浏览 1 评论 0原文

在我的平板电脑应用程序中,我在一个活动中彼此相邻地使用许多片段(属于一个类),在这个片段类中,我有:

public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);

    getLoaderManager().initLoader(this.position, null, this);
}

并且

public Loader<Cursor> onCreateLoader(int id, Bundle args) {
    Uri uri = Uri.withAppendedPath(...)
    return new CursorLoader(getActivity(), uri, proj, null, null, "distance");
}

每个片段都会启动一个新的工作线程对于 CursorLoader。这个规模能达到多大程度?

In my tablet app I use many Fragments (of one class) next to eachother in one activity, and in this Fragment class I have:

public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);

    getLoaderManager().initLoader(this.position, null, this);
}

and

public Loader<Cursor> onCreateLoader(int id, Bundle args) {
    Uri uri = Uri.withAppendedPath(...)
    return new CursorLoader(getActivity(), uri, proj, null, null, "distance");
}

Each Fragment starts a new worker thread for a CursorLoader. How far does this scale?

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

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

发布评论

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

评论(1

北音执念 2024-12-22 01:18:40

没有硬性限制。但是,如果您关心正在启动的线程数,请使用 AsyncTask,因为它的 doInBackground 方法在后台线程池中运行。更多信息

There is no hard limit. However, if you are concerned about the number of threads you are starting, use AsyncTask as its doInBackground method runs in a pool of background threads. More information

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