由于经常会在网上或群里看到有朋友会问线程方面的东西,就像我一个朋友他们老师讲的,J2SE、J2EE里面使用的线程方面的东西可能不是太多 ,但是在Android开发里面,玩的就是线程(UI Thread)! 好了,废话就说这么多吧,直入正题!今天要讲的东西就是线程池、线程的高效率使用,灵活控制!今天死马我就用最常用的几种方式来分别实现应用中使用的线程方面的知识,(共写了两个不同入口的Activity来分开不同的实现方式,大家可以自行注释AndroidManifest.xml中的Launch入口或打开注释)好了,先随便列几个吧,如:AsyncTask 、Runnable 、Thread、ThreadPool、 Executors等等的使用,看我文章的朋友应该都很清楚我的方式啦,果断先上效果,再一步步分解代码,来吧,效果图如下:
  一:无大小限制的线程池执行效果如下

  二:限制按顺序来执行任务的线程池效果如下

  三:一个一个任务的执行线程池效果如下(与按顺序执行效果是一样的,只是内部实现稍有不同)

  四:按指定个数来执行任务的线程池效果如下

  五:创建一个可在指定时间里执行任务的线程池,亦可重复执行,不常用,效果与四相同

  六:按指定工厂模式来执行的线程池,效果与四、五一样,但用方式六创建的线程池都有在工厂中指定的线程属性,
  比如:线程名字、是否为用户线程等等属性

  七:线程池中任务执行时可暂停效果图如下

  八:用Runnable、ConcurrentLinkedQueue、ConcurrentMap、Future、ExecutorService关联实现的效果图如下

  哦的了,效果看完了,现在就请大家自行修改AndroidManifest.xml中主Activity的入口来看两种不同方式实现的代码效果吧,首先,先贴一下Main.java类的代码,希望大家详细看里面的注释,一定要详细看,你不会吃亏的,相信我!(备注:为了写文章加注释还有查找的时候方便,把所有的主类及辅助类以内部类的形式写到一个.java文件里面了,如果朋友们觉得看着乱,不爽的话,可以自行将里面的类抽取到单独的.java文件中,几分钟搞定的事!)
  方式一(纯ExecutorService、AsyncTask、Runnable关联实现相关文件如下):
  1.1:主类文件(Main.java)
Java代码
    -  
-  
-  
-  
-  
-  
-  
-  
-  
-   
- package com.xiaoma.threadpooltest;  
-    
- import java.util.ArrayList;  
- import java.util.List;  
- import java.util.concurrent.ExecutorService;  
- import java.util.concurrent.Executors;  
- import java.util.concurrent.ThreadFactory;  
-    
- import android.annotation.TargetApi;  
- import android.app.Activity;  
- import android.content.Context;  
- import android.os.AsyncTask;  
- import android.os.Build;  
- import android.os.Bundle;  
- import android.os.SystemClock;  
- import android.util.AttributeSet;  
- import android.util.Log;  
- import android.view.LayoutInflater;  
- import android.view.View;  
- import android.view.ViewGroup;  
- import android.widget.AdapterView;  
- import android.widget.AdapterView.OnItemClickListener;  
- import android.widget.BaseAdapter;  
- import android.widget.LinearLayout;  
- import android.widget.ListView;  
- import android.widget.ProgressBar;  
- import android.widget.TextView;  
- import android.widget.Toast;  
-    
-  
-  
-  
-  
-  
-   
- @TargetApi(Build.VERSION_CODES.HONEYCOMB)  
- public class Main extends Activity  
- {  
-     private static int order = 0;  
-    
-       
-       
-    
-       
-     private static final int count = 10;  
-    
-       
-     private static ExecutorService singleTaskExecutor = null;  
-    
-       
-     private static ExecutorService limitedTaskExecutor = null;  
-    
-       
-     private static ExecutorService allTaskExecutor = null;  
-    
-       
-     private static ExecutorService scheduledTaskExecutor = null;  
-    
-       
-     private static ExecutorService scheduledTaskFactoryExecutor = null;  
-    
-     private List<AsyncTaskTest> mTaskList = null;  
-    
-       
-     private boolean isCancled = false;  
-    
-       
-     private boolean isClick = false;  
-    
-       
-     ThreadFactory tf = Executors.defaultThreadFactory();  
-    
-       
-     private static class ThreadFactoryTest implements ThreadFactory  
-     {  
-    
-         @Override  
-         public Thread newThread(Runnable r)  
-         {  
-             Thread thread = new Thread(r);  
-             thread.setName("XiaoMaGuo_ThreadFactory");  
-             thread.setDaemon(true);   
-             return thread;  
-         }  
-     }  
-    
-     static  
-     {  
-         singleTaskExecutor = Executors.newSingleThreadExecutor();  
-         limitedTaskExecutor = Executors.newFixedThreadPool(3);  
-         allTaskExecutor = Executors.newCachedThreadPool();   
-         scheduledTaskExecutor = Executors.newScheduledThreadPool(3);  
-         scheduledTaskFactoryExecutor = Executors.newFixedThreadPool(3, new ThreadFactoryTest());  
-         scheduledTaskFactoryExecutor.submit(new Runnable()  
-         {  
-    
-             @Override  
-             public void run()  
-             {  
-                 Log.i("KKK", "This is the ThreadFactory Test  submit Run! ! ! ");  
-             }  
-         });  
-     };  
-    
-     @Override  
-     public void onCreate(Bundle icicle)  
-     {  
-         super.onCreate(icicle);  
-         setContentView(R.layout.demo);  
-         final ListView taskList = (ListView)findViewById(R.id.task_list);  
-         taskList.setAdapter(new AsyncTaskAdapter(getApplication(), count));  
-         taskList.setOnItemClickListener(new OnItemClickListener()  
-         {  
-    
-             @Override  
-             public void onItemClick(AdapterView<?> parent, View view, int position, long id)  
-             {  
-                 if (position == 0)   
-                 {  
-                      
-  
-   
-                       
-    
-                      
-  
-   
-                     List<Runnable> unExecRunn = allTaskExecutor.shutdownNow();  
-    
-                     for (Runnable r : unExecRunn)  
-                     {  
-                         Log.i("KKK", "未执行的任务信息:=" + unExecRunn.toString());  
-                     }  
-                     Log.i("KKK", "Is shutdown ? = " + String.valueOf(allTaskExecutor.isShutdown()));  
-                     allTaskExecutor = null;  
-                 }  
-    
-                   
-                 AsyncTaskTest sat = mTaskList.get(1);  
-                 if (position == 1)  
-                 {  
-                     if (!isClick)  
-                     {  
-                         sat.cancel(true);  
-                         isCancled = true;  
-                         isClick = !isClick;  
-                     }  
-                     else  
-                     {  
-                         sat.cancel(false);  
-                         isCancled = false;  
-                           
-                         isClick = !isClick;  
-                         if (null != sat && sat.getStatus() == AsyncTask.Status.RUNNING)  
-                         {  
-                             if (sat.isCancelled())  
-                             {  
-                                 sat = new AsyncTaskTest(sat.mTaskItem);  
-                             }  
-                             else  
-                             {  
-                                 Toast.makeText(Main.this, "A task is already running, try later", Toast.LENGTH_SHORT)  
-                                     .show();  
-                             }  
-                         }  
-    
-                          
-  
-   
-                         if (allTaskExecutor == null)  
-                         {  
-                             allTaskExecutor = Executors.newCachedThreadPool();  
-                         }  
-                         sat.executeOnExecutor(allTaskExecutor);   
-                     }  
-                 }  
-                 else  
-                 {  
-                     sat.cancel(false);  
-                     isCancled = false;  
-                       
-                       
-                 }  
-    
-             }  
-         });  
-     }  
-    
-      
-  
-  
-  
-  
-   
-     private class AsyncTaskAdapter extends BaseAdapter  
-     {  
-         private Context mContext;  
-    
-         private LayoutInflater mFactory;  
-    
-         private int mTaskCount;  
-    
-         public AsyncTaskAdapter(Context context, int taskCount)  
-         {  
-             mContext = context;  
-             mFactory = LayoutInflater.from(mContext);  
-             mTaskCount = taskCount;  
-             mTaskList = new ArrayList<AsyncTaskTest>(taskCount);  
-         }  
-    
-         @Override  
-         public int getCount()  
-         {  
-             return mTaskCount;  
-         }  
-    
-         @Override  
-         public Object getItem(int position)  
-         {  
-             return mTaskList.get(position);  
-         }  
-    
-         @Override  
-         public long getItemId(int position)  
-         {  
-             return position;  
-         }  
-    
-         @Override  
-         public View getView(int position, View convertView, ViewGroup parent)  
-         {  
-             if (convertView == null)  
-             {  
-                 convertView = mFactory.inflate(R.layout.list_view_item, null);  
-                 AsyncTaskTest task = new AsyncTaskTest((MyListItem)convertView);  
-    
-                  
-  
-   
-                   
-                   
-    
-                  
-  
-  
-   
-                   
-                   
-                   
-    
-                  
-  
-   
-                   
-    
-                  
-  
-   
-                   
-    
-                  
-  
-   
-                 task.executeOnExecutor(allTaskExecutor);  
-    
-                  
-  
-   
-                   
-    
-                  
-  
-   
-                   
-                 mTaskList.add(task);  
-             }  
-             return convertView;  
-         }  
-     }  
-    
-     class AsyncTaskTest extends AsyncTask<Void, Integer, Void>  
-     {  
-         private MyListItem mTaskItem;  
-    
-         private String id;  
-    
-         private AsyncTaskTest(MyListItem item)  
-         {  
-             mTaskItem = item;  
-             if (order < count || order == count)  
-             {  
-                 id = "执行:" + String.valueOf(++order);  
-             }  
-             else  
-             {  
-                 order = 0;  
-                 id = "执行:" + String.valueOf(++order);  
-             }  
-         }  
-    
-         @Override  
-         protected void onPreExecute()  
-         {  
-             mTaskItem.setTitle(id);  
-         }  
-    
-          
-  
-   
-         @Override  
-         protected void onCancelled()  
-         {  
-             super.onCancelled();  
-         }  
-    
-         @Override  
-         protected Void doInBackground(Void... params)  
-         {  
-             if (!isCancelled() && isCancled == false)   
-             {  
-                 int prog = 0;  
-    
-                  
-  
-  
-  
-   
-                 while (prog < 101)  
-                 {  
-    
-                     if ((prog > 0 || prog == 0) && prog < 70)   
-                     {  
-                         SystemClock.sleep(100);  
-                     }  
-                     else  
-                       
-                     {  
-                         SystemClock.sleep(300);  
-                     }  
-    
-                     publishProgress(prog);   
-                     prog++;  
-                 }  
-             }  
-             return null;  
-         }  
-    
-         @Override  
-         protected void onPostExecute(Void result)  
-         {  
-         }  
-    
-         @Override  
-         protected void onProgressUpdate(Integer... values)  
-         {  
-             mTaskItem.setProgress(values[0]);   
-         }  
-     }  
- }  
-    
-  
-  
-  
-  
-  
-   
- class MyListItem extends LinearLayout  
- {  
-     private TextView mTitle;  
-    
-     private ProgressBar mProgress;  
-    
-     public MyListItem(Context context, AttributeSet attrs)  
-     {  
-         super(context, attrs);  
-     }  
-    
-     public MyListItem(Context context)  
-     {  
-         super(context);  
-     }  
-    
-     public void setTitle(String title)  
-     {  
-         if (mTitle == null)  
-         {  
-             mTitle = (TextView)findViewById(R.id.task_name);  
-         }  
-         mTitle.setText(title);  
-     }  
-    
-     public void setProgress(int prog)  
-     {  
-         if (mProgress == null)  
-         {  
-             mProgress = (ProgressBar)findViewById(R.id.task_progress);  
-         }  
-         mProgress.setProgress(prog);  
-     }  
- }  
  1.2:布局文件
XML/HTML代码
    - <?xml version="1.0" encoding="utf-8"?>  
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
-     android:layout_width="match_parent"  
-     android:layout_height="match_parent"  
-     android:paddingLeft="10dip"  
-     android:paddingRight="10dip"  
-     android:orientation="vertical" >  
-     <ListView android:id="@+id/task_list"  
-         android:layout_width="fill_parent"  
-         android:layout_height="wrap_content"  
-         android:divider="#cccccc"  
-         android:dividerHeight="0.6dip"  
-         android:footerDividersEnabled="true"  
-         android:headerDividersEnabled="true" />  
- </LinearLayout>  
  方式二(Runnable、ConcurrentLinkedQueue、ConcurrentMap、Future、ExecutorService关联实现的相关文件如 下):
  2.1:主类文件(MyRunnableActivity.java)
Java代码
    -  
-  
-  
-  
-  
-  
-  
-  
-  
-   
- package com.xiaoma.threadpooltest;  
-    
- import java.util.Iterator;  
- import java.util.Map;  
- import java.util.concurrent.ConcurrentHashMap;  
- import java.util.concurrent.ConcurrentLinkedQueue;  
- import java.util.concurrent.ConcurrentMap;  
- import java.util.concurrent.ExecutorService;  
- import java.util.concurrent.Executors;  
- import java.util.concurrent.Future;  
-    
- import android.app.Activity;  
- import android.os.Bundle;  
- import android.os.Handler;  
- import android.os.Message;  
- import android.util.Log;  
- import android.view.View;  
- import android.view.View.OnClickListener;  
- import android.widget.ProgressBar;  
- import android.widget.Toast;  
-    
-  
-  
-  
-  
-  
-   
- public class MyRunnableActivity extends Activity implements OnClickListener  
- {  
-    
-       
-     private ConcurrentLinkedQueue<MyRunnable> taskQueue = null;  
-    
-      
-  
-  
-  
-  
-   
-     private ConcurrentMap<Future, MyRunnable> taskMap = null;  
-    
-      
-  
-  
-  
-   
-     private ExecutorService mES = null;  
-    
-       
-     private Object lock = new Object();  
-    
-       
-     private boolean isNotify = true;  
-    
-       
-     private boolean isRuning = true;  
-    
-       
-     private ProgressBar pb = null;  
-    
-       
-     private Handler mHandler = null;  
-    
-      
-  
-  
-  
-   
-     @Override  
-     protected void onCreate(Bundle savedInstanceState)  
-     {  
-           
-         super.onCreate(savedInstanceState);  
-         setContentView(R.layout.my_runnable_main);  
-         init();  
-     }  
-    
-     public void init()  
-     {  
-         pb = (ProgressBar)findViewById(R.id.progressBar1);  
-         findViewById(R.id.button1).setOnClickListener(this);  
-         findViewById(R.id.button2).setOnClickListener(this);  
-         findViewById(R.id.button3).setOnClickListener(this);  
-         findViewById(R.id.button4).setOnClickListener(this);  
-         findViewById(R.id.button5).setOnClickListener(this);  
-         taskQueue = new ConcurrentLinkedQueue<MyRunnable>();  
-         taskMap = new ConcurrentHashMap<Future, MyRunnable>();  
-         if (mES == null)  
-         {  
-             mES = Executors.newCachedThreadPool();  
-         }  
-    
-           
-         mHandler = new Handler()  
-         {  
-              
-  
-  
-  
-   
-             @Override  
-             public void handleMessage(Message msg)  
-             {  
-                 super.handleMessage(msg);  
-                 pb.setProgress(msg.what);  
-             }  
-    
-         };  
-    
-     }  
-    
-      
-  
-  
-  
-   
-     @Override  
-     public void onClick(View v)  
-     {  
-         switch (v.getId())  
-         {  
-             case R.id.button1:  
-                 start();  
-                 break;  
-             case R.id.button2:  
-                 stop();  
-                 break;  
-             case R.id.button3:  
-                 reload(new MyRunnable(mHandler));  
-                 break;  
-             case R.id.button4:  
-                 release();  
-                 break;  
-             case R.id.button5:  
-                 addTask(new MyRunnable(mHandler));  
-                 break;  
-    
-             default:  
-                 break;  
-         }  
-     }  
-    
-      
-  
-   
-     private void addTask(final MyRunnable mr)  
-     {  
-    
-         mHandler.sendEmptyMessage(0);  
-    
-         if (mES == null)  
-         {  
-             mES = Executors.newCachedThreadPool();  
-             notifyWork();  
-         }  
-    
-         if (taskQueue == null)  
-         {  
-             taskQueue = new ConcurrentLinkedQueue<MyRunnable>();  
-         }  
-    
-         if (taskMap == null)  
-         {  
-             taskMap = new ConcurrentHashMap<Future, MyRunnable>();  
-         }  
-    
-         mES.execute(new Runnable()  
-         {  
-    
-             @Override  
-             public void run()  
-             {  
-                  
-  
-  
-  
-  
-  
-  
-   
-                 taskQueue.offer(mr);  
-                   
-                 notifyWork();  
-             }  
-         });  
-    
-         Toast.makeText(MyRunnableActivity.this, "已添加一个新任务到线程池中 !", 0).show();  
-     }  
-    
-      
-  
-   
-     private void release()  
-     {  
-         Toast.makeText(MyRunnableActivity.this, "释放所有占用的资源!", 0).show();  
-    
-           
-         mHandler.sendEmptyMessage(0);  
-         isRuning = false;  
-    
-         Iterator iter = taskMap.entrySet().iterator();  
-         while (iter.hasNext())  
-         {  
-             Map.Entry<Future, MyRunnable> entry = (Map.Entry<Future, MyRunnable>)iter.next();  
-             Future result = entry.getKey();  
-             if (result == null)  
-             {  
-                 continue;  
-             }  
-             result.cancel(true);  
-             taskMap.remove(result);  
-         }  
-         if (null != mES)  
-         {  
-             mES.shutdown();  
-         }  
-    
-         mES = null;  
-         taskMap = null;  
-         taskQueue = null;  
-    
-     }  
-    
-      
-  
-   
-     private void reload(final MyRunnable mr)  
-     {  
-         mHandler.sendEmptyMessage(0);  
-         if (mES == null)  
-         {  
-             mES = Executors.newCachedThreadPool();  
-             notifyWork();  
-         }  
-    
-         if (taskQueue == null)  
-         {  
-             taskQueue = new ConcurrentLinkedQueue<MyRunnable>();  
-         }  
-    
-         if (taskMap == null)  
-         {  
-             taskMap = new ConcurrentHashMap<Future, MyRunnable>();  
-         }  
-    
-         mES.execute(new Runnable()  
-         {  
-    
-             @Override  
-             public void run()  
-             {  
-                   
-                 taskQueue.offer(mr);  
-                   
-                 notifyWork();  
-             }  
-         });  
-    
-         mES.execute(new Runnable()  
-         {  
-             @Override  
-             public void run()  
-             {  
-                 if (isRuning)  
-                 {  
-                     MyRunnable myRunnable = null;  
-                     synchronized (lock)  
-                     {  
-                         myRunnable = taskQueue.poll();   
-                         if (myRunnable == null)  
-                         {  
-                             isNotify = true;  
-                         }  
-                     }  
-    
-                     if (myRunnable != null)  
-                     {  
-                         taskMap.put(mES.submit(myRunnable), myRunnable);  
-                     }  
-                 }  
-             }  
-         });  
-     }  
-    
-      
-  
-   
-     private void stop()  
-     {  
-    
-         Toast.makeText(MyRunnableActivity.this, "任务已被取消!", 0).show();  
-    
-         for (MyRunnable runnable : taskMap.values())  
-         {  
-             runnable.setCancleTaskUnit(true);  
-         }  
-     }  
-    
-      
-  
-   
-     private void start()  
-     {  
-    
-         if (mES == null || taskQueue == null || taskMap == null)  
-         {  
-             Log.i("KKK", "某资源是不是已经被释放了?");  
-             return;  
-         }  
-         mES.execute(new Runnable()  
-         {  
-             @Override  
-             public void run()  
-             {  
-                 if (isRuning)  
-                 {  
-                     MyRunnable myRunnable = null;  
-                     synchronized (lock)  
-                     {  
-                         myRunnable = taskQueue.poll();   
-                         if (myRunnable == null)  
-                         {  
-                             isNotify = true;  
-                               
-                               
-                               
-                               
-                               
-                               
-                               
-                               
-                         }  
-                     }  
-    
-                     if (myRunnable != null)  
-                     {  
-                         taskMap.put(mES.submit(myRunnable), myRunnable);  
-                     }  
-                 }  
-    
-             }  
-         });  
-     }  
-    
-     private void notifyWork()  
-     {  
-         synchronized (lock)  
-         {  
-             if (isNotify)  
-             {  
-                 lock.notifyAll();  
-                 isNotify = !isNotify;  
-             }  
-         }  
-     }  
- }  
  2.2:辅助类(MyRunnable.java)
  2.3:布局文件
XML/HTML代码
    - <?xml version="1.0" encoding="utf-8"?>  
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
-     android:layout_width="match_parent"  
-     android:layout_height="match_parent"  
-     android:orientation="vertical" >  
-    
-     <LinearLayout  
-         android:layout_width="match_parent"  
-         android:layout_height="wrap_content"  
-         android:orientation="horizontal" >  
-    
-         <Button  
-             android:id="@+id/button5"  
-             android:layout_width="0dp"  
-             android:layout_height="wrap_content"  
-             android:layout_weight="1"  
-             android:text="添加任务" />  
-    
-         <Button  
-             android:id="@+id/button1"  
-             android:layout_width="0dp"  
-             android:layout_height="wrap_content"  
-             android:layout_weight="1"  
-             android:text="开始任务" />  
-    
-         <Button  
-             android:id="@+id/button2"  
-             android:layout_width="0dp"  
-             android:layout_height="wrap_content"  
-             android:layout_weight="1"  
-             android:text="取消任务" />  
-    
-         <Button  
-             android:id="@+id/button3"  
-             android:layout_width="0dp"  
-             android:layout_height="wrap_content"  
-             android:layout_weight="1"  
-             android:text="重新加载" />  
-    
-         <Button  
-             android:id="@+id/button4"  
-             android:layout_width="0dp"  
-             android:layout_height="wrap_content"  
-             android:layout_weight="1"  
-             android:text="释放资源" />  
-     </LinearLayout>  
-    
-     <include layout="@layout/my_runnable_merge"/>  
-    
- </LinearLayout>  
  方式一、方式二的全局配置文件AndroidManifest.xml文件的配置如下:
XML/HTML代码
    - <?xml version="1.0" encoding="utf-8"?>  
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
-     package="com.xiaoma.threadpooltest"  
-     android:versionCode="1"  
-     android:versionName="1.0" >  
-    
-     <uses-sdk  
-         android:minSdkVersion="8"  
-         android:targetSdkVersion="15" />  
-    
-     <application  
-         android:allowBackup="true"  
-         android:icon="@drawable/ic_launcher"  
-         android:label="@string/app_name"  
-         android:theme="@style/AppTheme" >  
-         <activity  
-             android:name="Main"  
-             android:label="@string/app_name" >  
-   
-   
-    
-   
-   
-         </activity>  
-         <activity  
-             android:name="MyRunnableActivity"  
-             android:label="@string/app_name" >  
-             <intent-filter>  
-                 <action android:name="android.intent.action.MAIN" />  
-    
-                 <category android:name="android.intent.category.LAUNCHER" />  
-             </intent-filter>  
-         </activity>  
-     </application>  
-    
- </manifest>  
  好了,今天要写内容,大体就是这些了,项目的源码大家可以到这http://mzh3344258.blog.51cto.com/1823534/1313611 里面的附件下载,WordPress里面不知道怎么上传,大家多见谅吧,还得绕个路去下载,非常抱歉! O_O 如果能仔细的将上面的东西都看完并消化的话,线程池方面的东西可能以后并不会太过为难你啦!呵呵,当然了,这些代码中写的都是一些比较简单的写法, 仅仅是使用了在线程中休眠的方式来模拟网络下载(还是个假象),如果在实际代码中使用时,尤其在释放资源这一块,不要只是单单释放了我们自己控制的线程池及其任务,还要将网络请求的Http也一同销毁(disconnection)掉哦,这样才算做到了完美!如果还有哪位朋友没有安卓源码的话,可以到这个地址查看官方在线的安卓系统源码:https://github.com/android  急急忙忙写的,如果文章中有什么地方写的不对的,真的很希望Android老鸟、菜鸟都来指点、提问,代码中若不对的,或不太合理的地方,有朋友发觉了还请及时批评指正!先在此谢谢大家啦!加油,每天进步一点,坚持总会有收获的!废话不多说了,大家晚安!…O_O…