SyntaxFix
Write A Post
Hire A Developer
Questions
Use this to remove title from android app in your Androidmainfest.xml
android:theme="@android:style/Theme.NoTitleBar"
or you can use this in your activity
requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.activity_main);