Removed hiding of action bar

This needs to be replaced by AppBarLayout
This commit is contained in:
M66B
2020-03-04 16:30:06 +01:00
parent de3fcb5db8
commit 05c4aa1bd5
4 changed files with 2 additions and 77 deletions

View File

@@ -66,7 +66,6 @@ import static android.app.Activity.RESULT_OK;
public class FragmentBase extends Fragment {
private String title = null;
private String subtitle = " ";
private boolean action = true;
private boolean finish = false;
private long message = -1;
@@ -97,28 +96,6 @@ public class FragmentBase extends Fragment {
updateSubtitle();
}
protected void setActionBar(boolean show) {
Log.i("Set action bar=" + show);
AppCompatActivity activity = (AppCompatActivity) getActivity();
if (activity == null)
return;
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(activity);
boolean hide_actionbar = prefs.getBoolean("hide_actionbar", false);
ActionBar actionBar = activity.getSupportActionBar();
if (actionBar == null)
return;
if (show || !hide_actionbar)
actionBar.show();
else
actionBar.hide();
this.action = show;
}
@Override
public void startActivity(Intent intent) {
try {
@@ -201,7 +178,6 @@ public class FragmentBase extends Fragment {
Log.d("Resume " + this);
super.onResume();
updateSubtitle();
setActionBar(action);
if (finish) {
getParentFragmentManager().popBackStack();
finish = false;