Recent content by bahaei

  1. bahaei

    thread changing ui

    Re: CHanging UI from another Thread Yes try to learn and explore
  2. bahaei

    thread changing ui

    I read a lot that we cannot change ui from another thread but I MAKE A THREAD AND CHANGE UI simply AND I get confused . new Thread (new Runnable(){ public void Run(){ b.setbackgroundcolor(Color.blue); } } b is a button . and it works without any problem without handler any thing else !! what...