中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • IntentService中使用Toask報錯sending message to a Handler on a dead thread

IntentService中使用Toask報錯sending message to a Handler on a dead thread

發布時間:2020-07-27 13:39:21 來源:網絡 閱讀:2577 作者:袁斟 欄目:開發技術

在自己IntentSevice繼承類中的onHandleIntent方法中寫Toast.makeText(getApplicationContext(), "sd不存在", Toast.LENGTH_SHORT).show();時不會有任何提示,logcat中提示“sending message to a Handler on a dead thread”錯誤。后從網上差報錯原因了解到當一個線程的消息循環已經退出后,不能再給其發送消息不如就會報錯。后有從一個網站找到了解決方案,和產生錯誤的原因。

The problem here is that you are creating a Toast inside a thread that is managed by the IntentService. The system will use the Handler associated with this thread to show and hide the Toast.


First the Toast will be shown correctly, but when the system tries to hide it, after the onHandleIntent method has finished, the error "sending message to a Handler on a dead thread" will be thrown because the thread on which the Toast was created is no longer valid, and the Toast will not disappear.


這里的問題是,你正在創建一個由IntentService管理的Toast內部線程。該系統將使用與此線程關聯的處理程序,以顯示和隱藏Toast。首先,Toast將正確顯示出來,但是當系統試圖將其隱藏時onHandleIntent方法已經完成,“sending message to a Handler on a dead thread”的錯誤將被拋出,因為Toast在其上創建的線程不再有效,且Toast不會消失。

解決方法:

// create a handler to post messages to the main thread
    Handler mHandler = new Handler(getMainLooper());
    mHandler.post(new Runnable() {
        @Override
        public void run() {
            Toast.makeText(getApplicationContext(), "test", Toast.LENGTH_SHORT).show();
        }
    });



引用:http://www.xuebuyuan.com/36739.html


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

富民县| 农安县| 尼木县| 柘城县| 宿迁市| 临湘市| 邛崃市| 华池县| 伽师县| 呼伦贝尔市| 竹北市| 改则县| 泗水县| 同江市| 普洱| 云和县| 锡林郭勒盟| 永年县| 富民县| 朝阳市| 易门县| 秦皇岛市| 精河县| 陆河县| 武安市| 磐石市| 砀山县| 双牌县| 江口县| 拉萨市| 富宁县| 陇川县| 云林县| 孟村| 绿春县| 蓬溪县| 灵川县| 漯河市| 黑山县| 通渭县| 永定县|