Answers for "how to open an activity when you click an item android studio"

3

android how to start a new activity on button click

Intent intent = new Intent(this, ActivityToBeCalled.class);
startActivity(intent);
Posted by: Guest on August-22-2020
0

how to move from one activity to another in android studio on button click

private Button button;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main4);
        button = (Button)findViewById(R.id.button7);

        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                openInsideActivity4();
            }
        });
    }
    public void openInsideActivity4()
    {
        Intent intent = new Intent(this,InsideActivity4.class);
        startActivity(intent);
    }
Posted by: Guest on June-07-2020

Code answers related to "how to open an activity when you click an item android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language