How to remove title bar from the android activity?

后端 未结 7 922
名媛妹妹
名媛妹妹 2020-12-23 01:54

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.

7条回答
  •  醉梦人生
    2020-12-23 02:36

    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);
    }
    

提交回复
热议问题