use of app.insti.fragment.BodyFragment in project IITB-App by wncc.
the class Utils method getBodyFragment.
public static BodyFragment getBodyFragment(Body body, boolean sharedElements) {
Bundle bundle = new Bundle();
bundle.putString(Constants.BODY_JSON, new Gson().toJson(body));
bundle.putBoolean(Constants.NO_SHARED_ELEM, !sharedElements);
BodyFragment bodyFragment = new BodyFragment();
bodyFragment.setArguments(bundle);
return bodyFragment;
}
Aggregations