Intent from Fragment to Activity

后端 未结 11 1492
再見小時候
再見小時候 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-04 00:10

    You need to use getActivity() method from fragment for Intents.

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

提交回复
热议问题