android.view.ViewRoot$CalledFromWrongThreadException 異常的解決方案

https://blog.csdn.net/vincent_czz/article/details/7070354android

https://stackoverflow.com/questions/21014152/android-view-viewrootimplcalledfromwrongthreadexception-only-the-original-thride

也就是說必須在程序的主線程(也就是ui線程)中進行更新界面顯示的工做。能夠採用下面的方法之一來解決:函數

解決方案1:在activity.oncreate(bundle savedinstancestate)中建立一個handler類的實例, 在這個handler實例的handlemessage回調函數中調用更新界面顯示的函數。例如:post

public class ExampleActivity extends Activity {
    Handler h = null;

    @override
    public void onCreate(Bundle savedinstancestate) {
        h = new Handler() {
            @override
            public void handleMessage(Message msg) {
            // call update gui method.
            }
        };
    }
}

在其它的函數中,利用 send族或post族函數向這個h發送或郵寄消息便可。ui

 

解決方案2:利用activity.runOnUiThread(runnable)spa

  把更新ui的代碼建立在runnable中,而後在須要更新ui時,把這個runnable對象傳給activity.runOnUiThread(runnable)。 這樣runnable對像就能在ui程序中被調用。.net

相關文章
相關標籤/搜索