android线程handler、message、looper

不多说直接上代码了。。。。


package com.icedcap.handlertest;

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends Activity {

	private Button button;
	private TextView tv;
	private Handler handler;
	private int count = 0;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		init();
		handler = new MyHandler();
	}

	private void init() {
		button = (Button) findViewById(R.id.button);
		tv = (TextView) findViewById(R.id.textview);

		button.setOnClickListener(new View.OnClickListener() {

			@Override
			public void onClick(View v) {
				// 启动第二线程
				new MyThread().start();
			}
		});
	}

	class MyThread extends Thread {

		@Override
		public void run() {
			try {
				System.out.println("MyThreadName--->"
						+ Thread.currentThread().getName());
				Thread.sleep(500);
				Message msg = handler.obtainMessage();
				count++;
				msg.obj = count;
				handler.sendMessage(msg);
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
		}

	}

	class MyHandler extends Handler {

		@Override
		public void handleMessage(Message msg) {
			System.out.println("MyHandlerName--->"
					+ Thread.currentThread().getName());
			int n = (Integer) msg.obj;
			tv.setText("点击了" + n + "下!");
		}
	}

}


布局文件很简单

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/textview"
    		android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text=""/>
    <Button
        android:id="@+id/button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/textview"
        android:text="点击按钮更新textview" />

</RelativeLayout>








































你可能感兴趣的:(android,线程,handler,message,looper)