혹시 예제나 소스가 없을까요?
이것저것 뒤져도 다 메세지 출력밖에 없네요;;
책에 예제 짜맞춰서 해보려고했는데

public class IpActivity extends Activity {
 
 private Thread thread;
 
 private final Handler handler = new Handler();
 
 @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
       
        thread = new Thread(null, doBackgroundProcessing, "Background");
        thread.start();
    }
 
 private Runnable doBackgroundProcessing = new Runnable() {
  public void run() {
   handler.post( doUpdateUI );
  }
 };
 
 private Runnable doUpdateUI = new Runnable() {
  public void run() {

   ImageView imageview = (ImageView) findViewById(R.id.ImageView01);
   
  }
 };
 
 @Override
 public void onDestroy() {
  thread = null;
 }
}

밑에 쯤에 Runnable에서 그냥 이미지뷰만 넣었더니
안되네요;;
' The local variable imageview is never read '
이런 메세지만 나오네요..
하나도 모르는데 해보려니 미치겠네요 ㅠㅠ
도움좀 주세요!!