If you post some code it would be helpful. However, having had issues with this in the past I know using postDelayed usually fixes it:
java
yourListView.postDelayed(new Runnable() {
@Override
public void run() {
yourListView.setSelection(yourPosition);
}
}, 50L);