java - What is this component name -
what name of component in java swing shown in following link http://www.scriptocean.com/template3.html
it known extended listview
in android. want know same in java swing.
do mean component ?
if so, display in java, have choices.
- if want items clickable (that's action senders), tend use
jbuttons
in verticalboxlayout
'edjpanel
- if want display items, customize display, undoubtly go
jlist
way. take @ swing tutorial, of great help.
edit
accordint o comment, have area below button displaying content, you'll use second solution twist. elements in swing in fact jcomponents , can put in thers, you'll use jpanel
jlist
elements. in each jpanel, you'll have ione button visible , 1 sub-panel hidden @ startup. when clicking jbutton, you'll show or hide associated sub-panel. if want have kind of effect, can either
- wait upcoming javafx transitions effects
- use filthy rcih clients animations library (take @ links page).
Comments
Post a Comment