move from fragment to another activity in android code example
Example 1: go to activity android
btListe = (ImageButton)findViewById(R.id.Button_Liste);
btListe.setOnClickListener(new OnClickListener()
{ public void onClick(View v)
{
intent = new Intent(main.this, ListViewImage.class);
startActivity(intent);
finish();
}
});
Example 2: change fragment in android studio
Navigation.findNavController(view).navigate(R.id.action_fromFragment_toFragment);
Example 3: goto fragment from activity in kotlin intent
Intent notificationIntent = new Intent(context,MessagesFragment.class);