What is the difference between clickable and focusable in android?
            Asked
            
        
        
            Active
            
        
            Viewed 4.3k times
        
    68
            
            
         
    
    
        Rookie Programmer Aravind
        
- 11,952
- 23
- 81
- 114
 
    
    
        eugene
        
- 39,839
- 68
- 255
- 489
2 Answers
62
            Clickable means that it can be clicked by a pointer device or be tapped by a touch device. Focusable means that it can gain the focus from an input device like a keyboard. Input devices like keyboards cannot decide which view to send its input events to based on the inputs itself, so they send them to the view that has focus.
 
    
    
        K-ballo
        
- 80,396
- 20
- 159
- 169
12
            
            
        Focusable means ACTION_UP event will occur. It will gain it and it won't release it.
Clickable means ACTION_DOWN first and ACTION_UP at the end. It will gain and release it at the end.
 
    
    
        Sathesh
        
- 6,323
- 6
- 36
- 48
 
    
    
        RajeshVijayakumar
        
- 10,281
- 11
- 57
- 84
- 
                    17Shouldn't `Clickable` be first ACTION_DOWN and then ACTION_UP? – Jiechao Wang Nov 14 '17 at 16:41