* The RequestScroll method initiates a sequence of events to scroll an ListView field line to a specified position in the ListView field display area, moving other lines into and out of the display area as necessary.
* @param pLine desired line
* @param pScrollPolicy see setScrollPolicy
*/
public void requestScroll(final int pLine, final int pScrollPolicy) {
ActionMgr.addAction(new PendingAction(null) {
@Override
public void performAction() {
if (pScrollPolicy==Constants.AF_TOP) {
ListView.this.scrollRowToVisible(ListView.this.getTotalLines()-1);
ListView.this.scrollRowToVisible(pLine-1);