Android Studio No title bar
Android Studio top bar
官方 status bar
- Hide the Status Bar on Android 4.0 and Lower
- Hide the status bar
AndroidManifest
1 | <application |
MainActivity
1 | public class MainActivity extends Activity { |
Custom style
1 | <style name="AppTheme.NoActionBar" parent="AppTheme"> |
statusBarColor
API < 21
1 | <item name="android:statusBarColor">#60FFEB3B</item> |
1 | Window window = this.getWindow(); |
Android Studio No title bar
https://punk-nigo.github.io/2020/04/18/Android-Studio-No-title-bar/