Someone ask me a question a week ago and till now i did not get the answer of that question.The question was how we can go back to previous Activity by pressing back button of device without using intent or finish().
You can do it by simply overriding onBackPressed method in your activity.
@Override
public void onBackPressed() {
super.onBackPressed();
}
Hope this help!