I am having a receiver that broadcast when a intent service finishes a server call,When receiver is broadcast in onReceive I have updated list view with new data. What I want is to set the position of item to last element in a list before the broadcast. I have tried using setSelection() and smoothScrollToPosition(),but the list is focused to first item every time a list is updated.
Share
Try this code
where mAdapter is your Adapter Object which you used to populate data in ListView.it will only update your ListView without focused to first item.