What i am doing:: I am trying to bring the functionality of a home button in some other button onclick
- I know when we press home button in android app exits !
So Some function is invoked in android to perform this functionality
- Now i have a Button
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
}
});
- I need to do onclick of this button i need to call this function
- How can i do this ?