Browse Source

Small improvement

main
M66B 5 years ago
parent
commit
9ff3718561
1 changed files with 11 additions and 8 deletions
  1. +11
    -8
      app/src/main/java/eu/faircode/email/FragmentFolder.java

+ 11
- 8
app/src/main/java/eu/faircode/email/FragmentFolder.java View File

@ -43,6 +43,17 @@ public class FragmentFolder extends FragmentEx {
private ProgressBar pbSave;
private ProgressBar pbWait;
private long id = -1;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Get arguments
Bundle args = getArguments();
id = (args == null ? -1 : args.getLong("id"));
}
@Override
@Nullable
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
@ -50,10 +61,6 @@ public class FragmentFolder extends FragmentEx {
view = (ViewGroup) inflater.inflate(R.layout.fragment_folder, container, false);
// Get arguments
Bundle args = getArguments();
final long id = (args == null ? -1 : args.getLong("id"));
// Get controls
cbSynchronize = view.findViewById(R.id.cbSynchronize);
etAfter = view.findViewById(R.id.etAfter);
@ -133,10 +140,6 @@ public class FragmentFolder extends FragmentEx {
public void onActivityCreated(@Nullable final Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
// Get arguments
Bundle args = getArguments();
long id = (args == null ? -1 : args.getLong("id"));
// Observe
DB.getInstance(getContext()).folder().liveFolder(id).observe(getViewLifecycleOwner(), new Observer<EntityFolder>() {
boolean once = false;


Loading…
Cancel
Save