mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 22:26:06 +02:00
Removed hiding of action bar
This needs to be replaced by AppBarLayout
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user