Intent from Fragment to Activity

后端 未结 11 1514
再見小時候
再見小時候 2021-02-03 23:22

I was trying to go to another page using button, but it always fail.

Here is my First Class with its XML:

public class Fin         


        
11条回答
  •  终归单人心
    2021-02-03 23:51

     FragmentManager fragmentManager =  getFragmentManager();
     fragmentManager.beginTransaction().replace(R.id.frame, new MySchedule()).commit();
    

    MySchedule is the name of my java class.

提交回复
热议问题