码迷,mamicode.com
首页 > 其他好文 > 详细

"Only the original thread that created a view hierarchy can touch its views.” 解决方法

时间:2015-07-24 17:58:35      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

这个主要总是,开启的线程和 UI 线程(主线程)不是同一个线程.可以Runnable方式避免,如下例所示就可以解决这个问题了。

public static void updateText(Activity act, resID)
{

 loadingText = (TextView) activity.findViewById(R.id.loadingScreenTextView);
          act.runOnUiThread(new Runnable() 
                {
                     public void run() 
                     {
                       loadingText.setText(resID);

                     }

                });
}

 

"Only the original thread that created a view hierarchy can touch its views.” 解决方法

标签:

原文地址:http://www.cnblogs.com/netcorner/p/4673920.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!