編輯:關於Android編程
復制代碼 代碼如下:
package com.act262.sockettx;
import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
/**
* 可以在其他線程中獲取View類的數據,但是不能修改或者設置View類的數據
*
*/
public class Main extends Activity {
TextView result = null;
EditText get = null;
Button update = null;
Handler handler;
public void onCreate(Bundle bundle) {
super.onCreate(bundle);
setContentView(R.layout.main);
result = (TextView) findViewById(R.id.result);
update = (Button) findViewById(R.id.update);
get = (EditText) findViewById(R.id.get);
handler = new Handler() {
public void handleMessage(Message msg) {
if (msg.what == 1) {
result.setText("after update ui "
+ msg.getData().getString("data")
+ " \nman thread : "
+ Thread.currentThread().getName());
}
}
};
result.setText("before update ui main thread : "
+ Thread.currentThread().toString());
update.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
new MyThread("my thread").start();
}
});
}
class MyThread extends Thread {
public MyThread(String name) {
super(name);
}
@Override
public void run() {
// 發送不帶數據的消息
// handler.sendEmptyMessage(1);
// 發送附帶數據的消息
Message msg = new Message();
Bundle data = new Bundle();
data.putString("data", get.getText().toString() + " my thread: "
+ Thread.currentThread().getName());
msg.setData(data);
msg.what = 1;
handler.sendMessage(msg);
}
}
}
通過Maven中央庫添加第三方jar包的時候,出現了重復加載jar包的問題,解決辦法很簡單去掉一個不讓它去加載就OK了 一、錯誤 com.android.ide.co
介紹參考安卓Dialog源碼,他的builder設計模式實現方式是,使用內部類來實現功能,外部類的作用是通過build()函數,來對內部類進行參數設置,例如setter方
本文講實現一個自定義列表的Android程序,程序將實現一個使用自定義的適配器(Adapter)綁定 數據,通過contextView.setTag綁定數據有按鈕的Lis
雖然隨著RecyclerView的不斷普及,相應的資源也越來越多,許多的項目都在使用RecyclerView,但作為他的前輩ListView,加深對ListView的使用