Answers for "how to pass view from one activity to another in android"

0

navigate to another activity in android

OnClickListener onClickListener = new OnClickListener() {
    @Override
    public void onClick(View v) {
        startActivity(new Intent(action));
    }
};

Button button = (Button) findViewById(id);
button.setOnClickListener(onClickListener);
Posted by: Guest on July-13-2020

Code answers related to "how to pass view from one activity to another in android"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language