1

I was trying to create UI similar to TweetDeck in Java.

I guess the columns are equivalent to panels and also the timeline shown is also equivalent to panels. So I guess there are many panels.

I was trying to make such UI, but failed. I am not much into Java Swing so I tried to create it using Netbeans framework.

Is there any simple Java code that can solve some of my problems?

I guess everything should be dynamic here.

If I am wrong about panels here (because I guess too many panels can create problems) please guide me.

Jonas
  • 121,568
  • 97
  • 310
  • 388
bunkdeath
  • 2,348
  • 5
  • 21
  • 23
  • *"I am not much into java swings so I tried to create it using netbeans framework."* A) It is (1) 'Java' (2) 'Swing' & (3) 'NetBeans' B) Until you understand 1 & 2 - 3 won't help. C) What is 'TweetDeck'? Care to share an URL or (better) screenshot? – Andrew Thompson Oct 23 '11 at 09:07

2 Answers2

3

There are three choices:

trashgod
  • 203,806
  • 29
  • 246
  • 1,045
mKorbel
  • 109,525
  • 20
  • 134
  • 319
2

I would recommend to implement every column as a JList instead since it looks like you want your columns to have scrollable content. See How to Use Lists.

Jonas
  • 121,568
  • 97
  • 310
  • 388
  • +1 for `JList`, which I tend to overlook; there's a related example [here](http://stackoverflow.com/questions/7620579/individual-and-not-continuous-jtables-cell-selection/7620726#7620726). – trashgod Oct 23 '11 at 15:31