Android Switch Activity on button click How to Switch between Activities in Android Studio

Android switch activity on button click, How to Switch between Activities in Android Studio on button click, move from one activity to another in Android, How to Change Activities in Android, switch activity android, android switch activity.


What is Activity in android

Activity is a single screen by which users interact with the android application. All tasks are performed by the user are done via Activity. We can display data of our app using activity. Activity is the first screen on which users interact. Activity is the main soul of the app in terms of users interaction.

What we are gonna learn in this article

Well, we will learn about switching activities in android studio, switching activities in android, explicit intent in android, how to move from one activity to another, how to change activities in android, move from one activity to another using intents, android switch activity, etc.

Let’s start

Android Switch Activity on button click | Swicth activity android

There are a number of ways to move from one activity to another or to switch between activities in android. You can use any of them. But here we will see the most basic and popular method that is used by almost every professional developer to change activities in android or to switch activities in android.

We are using the method of intents, which means we are going to switch between activities or move from one activity to another using Intent.

Steps that we need to follow in order to switch between activities in android studio on button click are:

Step 1: Open Your Project, go to the activity file from which you want to move to another activity.

Step 2: Choose the activity on which you want to move.

Step 3: Make an Intent to change the activity on event listener.

Step 4: Start the Intent.

Hurray, You have done well and succeeded in switching between activities in android or android switch activity.

I know you don’t understand a single bit and you are surprised, don’t worry let’s take a look in detail how to switch android activity or Android switch activity on button click

First of all take a look on code below , i have got an Intent to change activity on Click Listner.

Intent changeActivity = new Intent(MainActivity.this, MainActivity2.class);
startActivity(changeActivity);

Let’s tear down the above code and know about how to make an Intent for changing activities in android in depth.

android switch activity, switch between activities in android studio
Click on Image to enlarge

Step 1: Import the Intent class, it will be automatically imported when you write down the word Intent.

Step 2: Name your Intent whatever you want it to be, then place equal to sign then use new Intent method to initialize the Intent.

Step 3: Now Name the Activity from which you want to move. If it is MainActivity, then write down MainActivity.this. Whatever be the name of your activity you have to write the same with .this keyword after that name.

Step 4: Now place comma sign(,) after .this keyword then name the activity on which you want to move, if it is MainActivity2 then write down MainActivity2.class. Whatever be the name of your activity you have to write the same with .class keyword after that name.

Step 5: Now, start the Intent using keyword startActivity(). Place the name of Intent in brackets of this method.


Let’s Make a Layout with one button, clicking that button will change or switch the Activity.

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Swtich to activity 2"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

Now let’s put the Intent which we created earlier in the click event listener.

MainActivity.java

package com.startechcity.switchactivity;

import androidx.appcompat.app.AppCompatActivity;

import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends AppCompatActivity {
Button button;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        button = findViewById(R.id.button);

        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Intent changeActivity = new Intent(MainActivity.this, MainActivity2.class);
                startActivity(changeActivity);
            }
        });
    }
}

Result for Android switch activity

switch between activities in android

More Tutorials on Android

Watch Short Video on Youtube about how to switch between activities in android or move from one activity to another in android.

Leave a Comment