splash screen application and hide action bar

后端 未结 5 1108
夕颜
夕颜 2020-12-08 07:26

I\'m trying to figure out how is it possible to hide the action bar for a splash screen activity. I did something which hide my action bar on my splash screen, but there is

5条回答
  •  余生分开走
    2020-12-08 08:08

    //add to AndroidManifest for SplashScreen
    
    //add this styles to  styles.xml
    
     
    
    //add this code to Activity
    public class SplashScreen extends AppCompatActivity {
    .
    .
        @Override
        public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        .
        .
        .
        }
    
    }
    

提交回复
热议问题