Skip to content
This repository was archived by the owner on Oct 27, 2025. It is now read-only.
This repository was archived by the owner on Oct 27, 2025. It is now read-only.

Move newInstance method before constructor #8

Description

@passsy

The staticnewInstance() method of Fragments is a common way to create new Fragment instances. The same pattern can be used for Activities to build an Intent in a type safe way, namely newIntent(). Those building functions replace the constructors.

publicstaticclassMyFragmentextendsFragment {
publicMyFragment() { } // Required empty constructorpublicstaticMyFragmentnewInstance(Stringfoo, intbar) {
MyFragmentf = newMyFragment();
Bundleargs = newBundle();
args.putString(ARG_FOO, foo);
args.putInt(ARG_BAR, bar);
f.setArguments(args);
returnf;
}

You can then access this data at a later point:

@OverridepublicvoidonCreate(BundlesavedInstanceState) {
super.onCreate(savedInstanceState);
Bundleargs = getArguments();
if (args != null) {
// Use initialisation data
}
}

There aren't many use cases for public static methods in Java other than initializer helper methods. Utils methods are also public static but they normally exist in util classes where all methods are public static. That's the reason why it is safe to move all methods with this signature above the constructor.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions