I was trying to go to another page using button, but it always fail.
button
Here is my First Class with its XML:
public class Fin
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
MainActivityList