Added manage filters/contacts to spam dialog

This commit is contained in:
M66B
2021-10-30 17:02:01 +02:00
parent 686a4d1f9c
commit b9f446f0fa
3 changed files with 72 additions and 2 deletions

View File

@@ -83,6 +83,14 @@ public class FragmentContacts extends FragmentBase {
private static final int REQUEST_EXPORT = 3;
static final int REQUEST_EDIT_NAME = 4;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Bundle args = getArguments();
this.junk = (args != null && args.getBoolean("junk"));
}
@Override
@Nullable
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {