最多可以创建多少个工作线程?
在我的平板电脑应用程序中,我在一个活动中彼此相邻地使用许多片段(属于一个类),在这个片段类中,我有:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有硬性限制。但是,如果您关心正在启动的线程数,请使用 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