Question

First of all, I'm using Swing in Java. In my application, I need to have a multi column list (if that's what I should call it). What I mean by a multi column list is something like windows explorer's list view mode of showing files and folders.

So, all of the columns of my list are going to have the same object (files for instance), but I want to be able to put them on different columns, in order to have a wider view.

Does anyone have any suggestion how I can do that?

Thanks, Reza

Was it helpful?

Solution

One may use:

list.setLayoutOrientation(JList.HORIZONTAL_WRAP);

OTHER TIPS

Alternatively you can use a JScrollPane. This will handle creating scroll bars and such for you, which would solve the issue of running out of vertical space, and thus eliminating the need for extra columns.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top