To remove the action bar, in the onCreate() of the splash activity,
setContentView(R.layout.splash);
getActionBar().hide();
I did it like this. Maybe it's because I saw it before onCreate was called, but the action bar comes out and disappears. I don't want to show it at all. What should I do?
<item name="android:windowActionBar">false</item>
I tried this, but it didn't work.
If you use the V7 support action bar
getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
getSupportActionBar().hide();
This will resolve the issue.
618 Uncaught (inpromise) Error on Electron: An object could not be cloned
611 GDB gets version error when attempting to debug with the Presense SDK (IDE)
915 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
574 Who developed the "avformat-59.dll" that comes with FFmpeg?
© 2024 OneMinuteCode. All rights reserved.