Java Swing How to - Get index of last visible item








Question

We would like to know how to get index of last visible item.

Answer

/*  w w  w.jav a2s. c  o m*/

import javax.swing.JList;

public class Main {
  public static void main(String[] argv) throws Exception {
    String[] items = { "A", "B", "C", "D" };
    JList list = new JList(items);

    int itemIx = list.getLastVisibleIndex();
  }
}