Java tutorial
//package com.java2s; //License from project: Open Source License import android.view.View; import android.widget.ListView; public class Main { public static View getLiveListChild(ListView listView, int position) { int firstPosition = listView.getFirstVisiblePosition() - listView.getHeaderViewsCount(); // This is the same as child #0 int wantedChild = position - firstPosition; // Say, first visible position is 8, you want position 10, wantedChild will now be 2 // So that means your view is child #2 in the ViewGroup: if (wantedChild < 0 || wantedChild >= listView.getChildCount()) { return null; } return listView.getChildAt(wantedChild); } }