Android : Calling Activity from Fragment

前端 未结 7 1289
我寻月下人不归
我寻月下人不归 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:13

    To call another activity from fragment use this:

    Intent i = new Intent(getActivity(), Activity.class);
    startActivity(i);
    

提交回复
热议问题