1方式一
在onCreate方法中调用
getSupportActionBar().hide();
2方式二
在onCreate方法中调用
ActionBar actionBar = getSupportActionBar(); if(actionBar!=null){ actionBar.setDisplayShowTitleEnabled(false); }
1方式一
在onCreate方法中调用
getSupportActionBar().hide();
2方式二
在onCreate方法中调用
ActionBar actionBar = getSupportActionBar(); if(actionBar!=null){ actionBar.setDisplayShowTitleEnabled(false); }