Android(java)學習筆記202:訊息機制的原理和實現

來源:互聯網
上載者:User

標籤:

1.首先我們通過一個執行個體案例來引出一個異常:

(1)布局檔案activity_main.xml:

 1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 2     xmlns:tools="http://schemas.android.com/tools" 3     android:layout_width="match_parent" 4     android:layout_height="match_parent" 5     tools:context=".MainActivity" > 6  7     <TextView 8         android:id="@+id/tv" 9         android:layout_width="wrap_content"10         android:layout_height="wrap_content"11         android:layout_centerHorizontal="true"12         android:layout_centerVertical="true"13         android:text="@string/hello_world" />14 15 </RelativeLayout>

(2)MainActivity.java:

package com.itheima.testthread;import android.app.Activity;import android.os.Bundle;import android.os.Handler;import android.os.Message;import android.widget.EditText;import android.widget.TextView;public class MainActivity extends Activity {        @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        System.out.println(Thread.currentThread().getName());        final TextView tv = (TextView) findViewById(R.id.tv);        new Thread() {            public void run() {                for (int i = 0; i < 100; i++) {                       tv.setText("哈哈哈"+i);                    try {                        Thread.sleep(100);                    } catch (InterruptedException e) {                        e.printStackTrace();                    }                }            };        }.start();    }}

(3)布署程式到模擬器上,出現如下效果,程式直接stop;並且直接報出異常錯誤: 

 


報錯:

 

android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.

意思:從錯誤線程調用的異常。誰建立的view,誰才能修改編輯view,只有主線程才可以修改view(所有的View都是主線程建立的)。

 

總結:上面報這個CalledFromWrongThreadException錯誤,是因為只有主線程才能修改View更新UI,但是我們這裡卻自己建立一個線程new Thread()其中run()的內容涉及到更新UI,這是不允許的,所有才會出現這樣的錯誤警告。

 

但是往往我們編寫程式的時候設計多個線程需要控制UI顯示,但是我們上面已經說過了UI更新只能交給主線程,為瞭解決這個矛盾,解放程式員,google開發出來訊息機制,用來子線程和主線程通訊,子線程要更新UI,就會發送訊息資料給主線程,這樣主線程就會更新相應的UI介面,從而解決這個矛盾。

 

Android(java)學習筆記202:訊息機制的原理和實現

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.