Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
178 views
in Technique[技术] by (71.8m points)

android - Max thread number for one application?

I wanna know about max thread number for one application.

You know Thread.activeCount() returns the number of active Threads in the running Thread's group and its subgroups.

If I can know the max number of threads to create in current activity, I can limit active threads.

I am using thread for http connection and catching Http response.

Thanks in advance.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

There is no maximum enforced by code that I am aware of. That being said, even for network I/O, diminishing returns will set in fairly quickly, since the CPU speed of Android devices is fairly small, and RAM is fairly limited.

Please consider using AsyncTask instead of your own threads. This uses a thread pool set up by Android, and so it will use a pool size that the core Android team believes is effective for the platform.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...