ensure the fab is hidden when moving passwords

This commit is contained in:
zeapo 2017-09-10 16:26:05 +02:00
parent 1c43d6c7e4
commit f383ebbb8f

View file

@ -68,6 +68,8 @@ public class SelectFolderFragment extends Fragment{
// Set the adapter
recyclerView.setAdapter(recyclerAdapter);
FloatingActionButton fab = (FloatingActionButton) view.findViewById(R.id.fab);
if (fab != null) fab.setVisibility(View.GONE);
registerForContextMenu(recyclerView);
return view;