Users are getting the following exception in my app on certain phones. I tried reproducing the error myself but couldn\'t . I searched through stack overflow for similar problem
I have append on scroll listener in ScrollView and solve problem
lst_payment_info.setOnScrollListener(new AbsListView.OnScrollListener() {
@Override
public void onScrollStateChanged(AbsListView view, int scrollState) {
if (SCROLL_STATE_TOUCH_SCROLL == scrollState) {
View currentFocus = getCurrentFocus();
if (currentFocus != null) {
currentFocus.clearFocus();
}
}
}
@Override
public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
}
});