Re: [问题] 使用Handler去抓到SocketThread的值

楼主: GreenPikachu (皮卡皮卡^_^)   2014-07-08 09:29:59
※ 引述《llzzyy01 (我是清流)》之铭言:
: Android如果要使用Socket 一般会建议另外开一个Thread
: 但如何从主Thread去取得SocketThread的值
: 之前有网友回答使用handler
: 所以我想问一下我的作法有没有问题
: 我先
: ConnectHandler cnHandler =new ConnectHandler(this);
: 再执行
: userNum=cnHandler.readInt(conSer);
: conSer物件是我连Socket的Thread 里面有一个readInt()可以取得Server传来的Integer
: public synchronized int readInt(){
: int tempInt=-129;
: try {
: tempInt=this.dis.readInt();
: } catch (IOException e) {
: e.printStackTrace();
: }
: return tempInt;
: }
: 最后 class ConnectHandler 有下面这个函式
: public int readInt(ConnectServer conSer){
: int temp=conSer.readInt();
: return temp;
: }
: 所以过程就是 主Thread呼叫Handler的函式,Handler的函式再去呼叫 SocketThread函式
: 但出来的结果 有时会成功 有时却会出现 NullPointerException
: 因为我以前都没用过Handler 但网络上找到的资料都是用在更新UI
: 所以我想确认一下我用Handler的方式是对的
: 另外再问一下,我看Handler的范例都是用 handleMessage()
: 难不成只有handleMessage()这个函式才能做到跨Thread沟通的神奇功能吗
: 我自己定义的函式就无法做到
先跟你提一下基本观念,
Android中 main thread又称 UI thread,
负责画面重绘与接收触碰反应,
假设今天有一件耗时的工作霸占著 UI thread,
这会造成一种类似"画面冻结"的现象,
即画面不会重绘且对任何触碰操作不会有反应.
因此, 像处理 Socket这种事情才会另开执行续来处理.
但有个常见的问题, 也是你正面临的问题是,
【我们要将 Socket收到的资料显示到萤幕上】
然而, UI的操作只能透过 UI thread,
处理 Socket的 another thread不能直接调用UI,
否则会发生例外.
解决方式有两种, 其中一种是使用 Handler.
Handler就像 thread的经纪人, 可替 thread进行排程,
换句话说, 在 another thread收到资料后,
接着将要做的事情(更新UI)定义在 Runnable的函式 run()中,
之后在将这个 Runnable物件透过 Handler堆入 UI thread的伫列中,
让它由 UI thread来执行.
程式码片段如下:
1 ...
2
3 Runnable action= new Runnable() {
4 @Override
5 public void run() {
6 //..do something
7 }
8 };
9
10 new Handler(Looper.getMainLooper()).post(action);
11
12 ...
行3~8定义你要交给 UI thread做的事情.
行10 Looper.getMainLooper(): 间接取得 UI thread,
new Handler(..): 造一个 UI thread的排程器,
post(..): 将一件事情堆入指定 thread的伫列中, 它将被执行.
补充:
1. 当一件工作霸占 main thread超过一定秒数会引发
Application Not Responding(ANR), 让使用者选择
继续等待或关闭应用程式.
http://ppt.cc/4Dj7
作者: tac0wu (在BBS中流浪)   2014-07-08 21:17:00
你真有心!!
作者: llzzyy01 (我是清流)   2014-07-08 21:54:00
感谢~~~
作者: tga123 (叛帝)   2014-07-08 23:41:00
真的!用心帮助阪友(必推
作者: pkmilk   2014-07-09 08:01:00
作者: qweasd777 (qweasd777)   2014-07-11 15:08:00

Links booklink

Contact Us: admin [ a t ] ucptt.com