Fragmentargs
Annotation Processor for setting arguments in android fragments
Install / Use
/learn @sockeqwe/FragmentargsREADME
FragmentArgs
Annotation Processor to create arguments for android fragments without using reflections.
I have written a blog entry about this library: http://hannesdorfmann.com/android/fragmentargs
Dependency
dependencies {
compile 'com.hannesdorfmann.fragmentargs:annotation:4.0.0-RC1'
annotationProcessor 'com.hannesdorfmann.fragmentargs:processor:4.0.0-RC1'
}
SNAPSHOT
Lastest snapshot version is 4.0.0-SNAPSHOT. You also have to add the url to the snapshot repository:
allprojects {
repositories {
...
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
Changelog
The changelog can be found here
How to use
FragmentArgs generates Java code at compile time. It generates a Builder class out of your Fragment class.
- Annotate your
Fragmentwith@FragmentWithArgs. For backward compatibility reasons this is not mandatory. However it's strongly recommended because in further versions of FragmentArgs this could become mandatory to support more features. - Annotate your fields with
@Arg. Fields should have at least package (default) visibility. Alternatively, you have to provide a setter method with at least package (default) visibility for your private@Argannotated fields. - In the Fragments
onCreate(Bundle)method you have to callFragmentArgs.inject(this)to read the arguments and set the values. - Unlike Eclipse Android Studio does not auto compile your project while saving files. So you may have to build your project to start the annotation processor which will generate the
Builderclasses for your annotated fragments.
Example:
import com.hannesdorfmann.fragmentargs.FragmentArgs;
import com.hannesdorfmann.fragmentargs.annotation.FragmentWithArgs;
import com.hannesdorfmann.fragmentargs.annotation.Arg;
@FragmentWithArgs
public class MyFragment extends Fragment {
@Arg
int id;
@Arg
private String title; // private fields requires a setter method
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
FragmentArgs.inject(this); // read @Arg fields
}
@Override
public View onCreateView(LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState) {
Toast.makeText(getActivity(), "Hello " + title,
Toast.LENGTH_SHORT).show();
return null;
}
// Setter method for private field
public void setTitle(String title) {
this.title = title;
}
}
In your Activity you will use the generated Builder class (the name of your fragment with "Builder" suffix) instead of new MyFragment() or a static MyFragment.newInstance(int id, String title) method.
For example:
public class MyActivity extends Activity {
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
int id = 123;
String title = "test";
// Using the generated Builder
Fragment fragment =
new MyFragmentBuilder(id, title)
.build();
// Fragment Transaction
getFragmentManager()
.beginTransaction()
.replace(R.id.container, fragment)
.commit();
}
}
Optional Arguments
You can specify a fragment argument to be optional by using @Arg(required = false)
For example:
@FragmentWithArgs
public class MyOptionalFragment extends Fragment {
@Arg
int id;
@Arg
String title;
@Arg(required = false)
String additionalText;
@Arg(required = false)
float factor;
@Arg(required = false)
int mFeatureId;
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
FragmentArgs.inject(this); // read @Arg fields
}
}
Optional arguments will generate a Builder class with additional methods to set optional arguments.
For Example:
public class MyActivity extends Activity {
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
int id = 123;
String title = "test";
// Using the generated Builder
Fragment fragment =
new MyFragmentBuilder(id, title) // required args
.additionalText("foo") // Optional arg
.factor(1.2f) // Optional arg
.featureId(42) // Optional arg
.build();
// Fragment Transaction
getFragmentManager()
.beginTransaction()
.replace(R.id.container, fragment)
.commit();
}
}
As you have seen optional fragment arguments are part of the Builder class as an own methods. Since they are optional you can decide if you want to set optional values or not by calling the corresponding method or skip the corresponding method call.
Like you have seen from the example above fields named with "m" prefix will be automatically cut by making the method name the sub-string of the original fields name without the "m" prefix. For example the field int mFeatureId corresponds to the builders method featureId(int)
Inheritance - Best practice
Wouldn't it be painful to override onCreate(Bundle) in every Fragment of your app just to insert FragmentArgs.inject(this).
FragmentArgs are designed to support inheritance. Hence you can override once onCreate(Bundle) in your Fragment base class and do not need to override this for every single Fragment.
For example:
public class BaseFragment extends Fragment {
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
FragmentArgs.inject(this); // read @Arg fields
}
}
@FragmentWithArgs
public class MyFragment extends BaseFragment {
@Arg
String title;
@Override
public View onCreateView(LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState) {
Toast.makeText(getActivity(), "Hello " + title,
Toast.LENGTH_SHORT).show();
}
}
@FragmentWithArgs
public class OtherFragment extends BaseFragment {
@Arg
String foo;
@Override
public View onCreateView(LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState) {
Toast.makeText(getActivity(), "Hello " + foo,
Toast.LENGTH_SHORT).show();
}
}
FragmentArgs also supports inheritance and abstract classes. That means that annotated fields of the supper class are part of the builder of the subclass. Furthermore this also works for special cases where you have a Fragment without any @Arg annotation but you want to use the arguments of the super class. For Example:
public class A extends Fragment {
@Arg int a;
@Arg String foo;
}
@FragmentArgs
public class B extends A {
// Arguments will be taken from super class
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Here you can simply access the inherited fields from super class
}
}
There may be special edge cases where you don't want to use the fragment args from super class. Then you can use @FragmentWithArgs(inherited = false). Example:
@FragmentWithArgs(inherited = false)
public class C extends A {
@Arg int c;
}
In this case only c will be argument of class C and the arguments of super class A are ignored.
ArgsBundler
FragmentArgs supports the most common data structures that you can put in a Bundle and hence set as arguments for a Fragment. The type of the @Arg annotated field is used for that. If you want to set not a out of the box supported data type (like a class you cant make Parcelable for whatever reason) as argument you can specify your own ArgsBundler.
public class DateArgsBundler implements ArgsBundler<Date>{
@Override public void put(String key, Date value, Bundle bundle) {
bundle.putLong(key, value.getTime());
}
@Override public Date get(String key, Bundle bundle) {
long timestamp = bundle.getLong(key);
return new Date(timestamp);
}
}
public class MyFragment extends Fragment {
@Arg ( bundler = DateArgsBundler.class )
Date date;
}
There are already two ArgBundler you may find useful:
@FragmentWithArgs
public class MyFragment {
@Arg ( bundler = CastedArrayListArgsBundler.class )
List<Foo> fooList; // Foo implements Parcelable
@Arg ( bundler = ParcelerArgsBundler.class)
Dog dog; // Dog is @Parcel annotated
}
-
CastedArrayListArgsBundler: The problem is that in a Bundle supportsjava.util.ArrayListand notjava.util.List.CastedArrayListArgsBundlerassumes that the List implementation isArrayListand castsListinternally toArrayListand put it into a bundle. -
If you use Parceler then you may know that your
@Parcelannotated class is not implemntingParcelabledirectly (Parceler generates a wrapper for your class that implements Parcelable). Therefore a@Parcelclass can not be set directly as fragment argument with@Arg. However, there is a ArgsBundler calledParcelerArgsBundlerthat you can use with@Parcel.@Parcel public class Dog { String name; } public class MyFragment { @Arg ( bundler = ParcelerArgsBundler.class ) Dog foo; }
While CastedArrayListArgsBundler already ships with compile 'com.hannesdorfmann.fragmentargs:annotation:x.x.x' you have to add
compile 'com.hannesdorfmann.fragmentargs:bundler-parceler:x.x.x'
as dependency to use ParcelerArgsBundler.
Kotlin support
As starting with FragmentArgs 3.0.0 the kotlin prog
Related Skills
node-connect
336.5kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
82.9kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
336.5kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
82.9kCommit, push, and open a PR

