Android, wie man zwischen den Aktivitäten wechselt
Intent intent = new Intent(getApplicationContext(), ActivityToBeOpened.class);
startActivity(intent);
Cautious Cod
Intent intent = new Intent(getApplicationContext(), ActivityToBeOpened.class);
startActivity(intent);