loop

  
class
 
LooperThread
 
extends
 
Thread
 
{

     
public Handler mHandler ;

     
public void run () {
         
Looper . prepare ();

          mHandler
= new Handler () {
             
public void handleMessage ( Message msg ) {
                 
// process incoming messages here
             
}
         
};

         
Looper . loop ();
     
}
 
}

你可能感兴趣的:(android,thread,class)