This commit is contained in:
M66B
2019-08-18 09:21:54 +02:00
parent 8c63b7fdc4
commit 4e557667be
2 changed files with 0 additions and 5 deletions

View File

@@ -140,12 +140,10 @@ public class ActivitySetup extends ActivityBase implements FragmentManager.OnBac
drawerToggle = new ActionBarDrawerToggle(this, drawerLayout, R.string.app_name, R.string.app_name) {
public void onDrawerClosed(View view) {
super.onDrawerClosed(view);
getSupportActionBar().setTitle(getString(R.string.app_name));
}
public void onDrawerOpened(View drawerView) {
super.onDrawerOpened(drawerView);
getSupportActionBar().setTitle(getString(R.string.app_name));
}
};
drawerLayout.addDrawerListener(drawerToggle);