I am trying below code to remove title bar:
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
But the title bar still appears.
I also tried android:theme="@android:style/Theme.Black.NoTitleBar"
but that crashs the app
Thanks for help!