使用Handler在子線程中更新UI

       Android規定僅僅能在主線程中更新UI。假設在子線程中更新UI 的話會提演示樣例如如下錯誤:Only the original thread that created a view hierachy can touch its view((僅僅有原來的線程建立一個視圖層次可以觸摸它的視圖)。java

      僅僅能在主線程中更新UI的緣由是:android中相關的view和控件不是線程安全的,咱們必須單獨作處理。android

      有的時候需要再子線程中實現更新UI,如下介紹使用Handler實現線程通訊的特色實現在子線程中更新UI。安全

Handler的使用場合:app

一、 to schedule messages and runnables to be executed as some point in the future;ide

      安排messages和runnables在未來的某個時間點運行。post

二、 to enqueue an action to be performed on a different thread than your own.spa

      將action入隊以備在一個不一樣的線程中運行。即可以實現線程間通訊。比方當你建立子線程時。你可以再你的子線程中拿到父線程中建立的Handler對象,就可以經過該對象向父線程的消息隊列發送消息了。.net

由於Android要求在UI線程中更新界面,所以,可以經過該方法在其餘線程中更新界面。線程

子線程更新UI實例:code

步驟:

一、建立Handler對象(此處建立於主線程中便於更新UI)。

二、構建Runnable對象。在Runnable中更新界面。

三、在子線程的run方法中向UI線程post,runnable對象來更新UI。

具體代碼例如如下:

package djx.android;

import djx.downLoad.DownFiles;
import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;

public class downLoadPractice extends Activity {
	private Button button_submit=null;
	private TextView textView=null;
	private String content=null;
	private Handler handler=null;
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        //建立屬於主線程的handler
        handler=new Handler();
        
        button_submit=(Button)findViewById(R.id.button_submit);
        textView=(TextView)findViewById(R.id.textView);
        button_submit.setOnClickListener(new submitOnClieckListener());
    }
    //爲按鈕加入監聽器
    class submitOnClieckListener implements OnClickListener{
		@Override
		public void onClick(View v) {
//本地機器部署爲server。從本地下載a.txt文件內容在textView上顯示			
			final DownFiles df=new DownFiles("http://192.168.75.1:8080/downLoadServer/a.txt");
			textView.setText("正在載入......");
			new Thread(){
				public void run(){	
					content=df.downLoadFiles();		
					handler.post(runnableUi); 
					}					
			}.start();						
		}
    	
    } 

   // 構建Runnable對象。在runnable中更新界面
    Runnable   runnableUi=new  Runnable(){
		@Override
		public void run() {
			//更新界面
			textView.setText("the Content is:"+content);
		}
    	
    };
    	
    
}


 

參考網址:

1. http://blog.csdn.net/djx123456/article/details/6325983

2. 具體線程具體解釋連接http://lavasoft.blog.51cto.com/62575/27069/

相關文章
相關標籤/搜索