public static NewsTeeInstructionsDialogFragment newInstance(
     int icon_id, String title, String message, boolean isWelcome) {
   Bundle args = new Bundle();
   args.putInt(EXTRA_ICON_ID, icon_id);
   args.putString(EXTRA_TITLE, title);
   args.putString(EXTRA_MSG, message);
   args.putBoolean(EXTRA_IS_WELCOME, isWelcome);
   NewsTeeInstructionsDialogFragment fragment = new NewsTeeInstructionsDialogFragment();
   fragment.setArguments(args);
   return fragment;
 }