public static SeasonsFragment newInstance(int showId) { SeasonsFragment f = new SeasonsFragment(); // Supply index input as an argument. Bundle args = new Bundle(); args.putInt(InitBundle.SHOW_TVDBID, showId); f.setArguments(args); return f; }