Android : Calling Activity from Fragment

前端 未结 7 1293
我寻月下人不归
我寻月下人不归 2020-12-02 21:43

I am using fragments inside an activity. I am using MediaRecorder to for audio recording. I have two part of an activity. 1st itself the Activity which will list the record

7条回答
  •  爱一瞬间的悲伤
    2020-12-02 22:05

    Your fragment should have a parent

    Intent intent = new Intent(getActivity(), SecondActivity.class);
    getActivity().startActivity(intent);  
    

提交回复
热议问题