friend's
I am facing a problem when i use back button in my android device or from UI, initially i have list view (List1) with content,when i click list view row it moves to next listview (List2) with AsyncTask to represent it progress upto it completion and to set on list(List2) ,and next i click this list(List2) i have to move webview,here my problem is back button is not working properly,it back to previos page but listview have empty display.
here my code for UI click event
back.setOnClickListener(new OnClickListener(){
finish();
});
how can i fix this problem
I am facing a problem when i use back button in my android device or from UI, initially i have list view (List1) with content,when i click list view row it moves to next listview (List2) with AsyncTask to represent it progress upto it completion and to set on list(List2) ,and next i click this list(List2) i have to move webview,here my problem is back button is not working properly,it back to previos page but listview have empty display.
here my code for UI click event
back.setOnClickListener(new OnClickListener(){
finish();
});
how can i fix this problem