Move folders to navigation menu, navigate by account

This commit is contained in:
M66B
2018-08-07 17:44:25 +00:00
parent d5a55f9e27
commit d075f56e2d
167 changed files with 294 additions and 354 deletions

View File

@@ -25,7 +25,6 @@ import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
@@ -45,7 +44,6 @@ public class FragmentAbout extends FragmentEx {
@Nullable
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
setSubtitle(R.string.menu_about);
setHasOptionsMenu(true);
View view = inflater.inflate(R.layout.fragment_about, container, false);
@@ -97,9 +95,4 @@ public class FragmentAbout extends FragmentEx {
return view;
}
@Override
public void onPrepareOptionsMenu(Menu menu) {
menu.clear();
}
}