I was trying to close app on click of button click.so i use the following code on home page
closebtn.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
// TODO Auto-generated method stub
finish();
}
});
from page5
clicking of close button
Home page opens.
b5.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
// TODO Auto-generated method stub
Intent i =new Intent(Page5.this, FirstPage.class);
startActivity(i);
}
});
so when i click on close button in home page it is again going to page5 instead of closing app.
Please help me to find the problem
Thanks in advance.