/** Returns a new instance of this fragment for the given section number. */
 public MyContactFragment newInstance(int sectionNumber) {
   MyContactFragment fragment = new MyContactFragment();
   Bundle args = new Bundle();
   args.putInt(ARG_SECTION_NUMBER, sectionNumber);
   fragment.setArguments(args);
   return fragment;
 }