[Android knowledge notes] Handler mechanism (1)

Start with a common mistake among Android beginners:

insert image description here

The code that causes this error usually looks like this:

new Thread(){
   
    
    
   @Override
    public void run() {
   
    
    
        new Handler(); 
    }
}.

Guess you like

Origin blog.csdn.net/lyabc123456/article/details/131272199