コード例 #1
0
ファイル: MyActivity.java プロジェクト: Rauf019/MyApplication
 /** Returns a new instance of this fragment for the given section number. */
 public static Message_Frag newInstance(int sectionNumber) {
   Message_Frag fragment = new Message_Frag();
   Bundle args = new Bundle();
   args.putInt(ARG_SECTION_NUMBER, sectionNumber);
   fragment.setArguments(args);
   return fragment;
 }