fix back button for feed on main page

This commit is contained in:
Christian Schabesberger 2017-10-30 23:03:18 +01:00
parent 02d986fc89
commit 391d3e7fc7
1 changed files with 5 additions and 1 deletions

View File

@ -187,7 +187,11 @@ public abstract class BaseListFragment<I, N> extends BaseStateFragment<I> implem
ActionBar supportActionBar = activity.getSupportActionBar();
if (supportActionBar != null) {
supportActionBar.setDisplayShowTitleEnabled(true);
supportActionBar.setDisplayHomeAsUpEnabled(true);
if(useAsFrontPage) {
supportActionBar.setDisplayHomeAsUpEnabled(false);
} else {
supportActionBar.setDisplayHomeAsUpEnabled(true);
}
}
}