Answers for "how to disable the top bar in android apps"

8

android studio removing title bar

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar" />
Posted by: Guest on April-07-2020
0

how to remove title bar android studio

change
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
to
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
Posted by: Guest on September-29-2020
-2

removing title bar from android app

res -> values -> styles.xml
<item name="windowNoTitle">true</item>
Posted by: Guest on September-02-2020

Code answers related to "how to disable the top bar in android apps"

Browse Popular Code Answers by Language