Can someone please help me with the issue.I want my activity as full screen and want to remove title from the screen.I have tried several ways but not able to remove it.
Try this:
this.getSupportActionBar().hide();
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); try { this.getSupportActionBar().hide(); } catch (NullPointerException e){} setContentView(R.layout.activity_main); }