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
//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);
.
.
.
}
}