Intent from Fragment to Activity

后端 未结 11 1487
再見小時候
再見小時候 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:05

    use this

    public void goToAttract(View v)
    {
        Intent intent = new Intent(getActivity(), MainActivityList.class);
        startActivity(intent);
    }
    

    be sure you've registered MainActivityList in you Manifest

提交回复
热议问题