Here's a link I want to hide the action bar (application title bar)/full screen activity of application how can i do that??
            Asked
            
        
        
            Active
            
        
            Viewed 1,366 times
        
    1 Answers
0
            
            
        You can hide the action bar by adding <android:theme="@android:style/Theme.NoTitleBar"> to your manifest, or programmatically :
getActionBar().hide();
// with abs
getSupportActionBar().hide();
This link may be helpfull
 
    
    
        Community
        
- 1
- 1
 
    
    
        S.Thiongane
        
- 6,883
- 3
- 37
- 52
