public class Calend { public static void main(String[] args) { Calendar cal=Calendar.getInstance();//返回Calendar对象 System.out.println(cal.getTime());//输出Mon Aug 21 17:41:18 CST 2017 System.out.println(int.class);//输出int System.out.println(Integer.TYPE…
提示错误:The method replace(int, Fragment) in the type FragmentTransaction is not applicable for the arguments (int, MyFragment) getFragmentManager().beginTransaction() .replace(R.id.container, new User()).commit(); Fragment Activity导入的库不…
Fragment newfragment =new MyFragment();fragmentTransaction.replace(R.layout.activity_main,newfragment ).commit(); 提示错误:The method replace(int, Fragment) in the type FragmentTransaction is not applicable for the arguments (int, MyFragment) 妈蛋,找了好久!一直以…