How to get the Data from DialogFragment to MainActivity in Android?

前端 未结 4 573
自闭症患者
自闭症患者 2021-01-14 00:51

I create a application using DialogFragment.I want to get the Data from DialogFragment and setText in the MainActivity. I

4条回答
  •  一向
    一向 (楼主)
    2021-01-14 01:13

    replace from

    MainActivity mainActivity = new MainActivity(); 
    

    to:

    Activity mainActivity = (MainActivity)getActivity();
    

提交回复
热议问题