I want to send the Button View to another activity, eg.
Button bttn=(Button )findViewById(R.id.bttn)
startActivity(new Intent(this,Account.class))
by using bundles we can send values from 1 Activity to another activity,same way how i can send view to another activity..
You shouldn’t send views between activities. Instead, create a separate button in the second activity and send only the necessary information.