Notes - Part II - Play with JavaFX

Posted by Silviu Turuga on Oracle Blogs See other posts from Oracle Blogs or by Silviu Turuga
Published on Mon, 10 Dec 2012 06:00:00 +0000 Indexed on 2012/12/10 11:16 UTC
Read the original article Hit count: 247

Filed under:
  1. Open the project from last lesson
  2. Double click on NotesUI.fmxl, this will open the JavaFX Scene Builder
  3. On the left side you have a area called Hierarchy, from there press Del or Shift+Backspace on Mac to delete the Button and the Label. You'll receive a warning, that some components have been assigned an fx:id, click Delete as we don't need them anymore.
  4. Resize the AnchorPane to have enough room for our design, eg. 820x550px
  5. From the top left pick the Container called Accordion and drag over the AnchorPane design
  6. Chose then from Controls a List View and drag inside the Accordion. You'll notice that by default the Accordion has 2 TitledPane, and you can switch between them by clicking on their name.
  7. I'll let you the pleasure to do the rest in order to get the following result 
  8. Here is the list of objects used
  9. Save it and then return to NetBeans
  10. Run the application and it should be run without any issue. If you click on buttons they all are functional, but nothing happens as we didn't link them with any action. We'll see this in the next episode.
  11. Now, let's play a little bit with the application and try to resize it… Have you notice the behavior? If the form is too small, some objects aren't visible, if it is too large there is too much space
    .
    That's for sure something that your users won't like and you as a programmer have to care about this.
  12. From NetBeans double click NotesUI.fmxl so to return back to JavaFX Scene Builder
  13. Select the TextField from bottom left of Notes, the one where I put the text Category and then from the right part of JavaFX Scene Builder you'll notice a panel called Inspector.
  14. Chose Layout and then click on the dotted lines from left and bottom of the square, like you see in the below image
  15. This will make the textfield to have always the same distance from left and bottom no matter the size of the form.
  16. Save and run the application. Note that whenever the form is changing the Height, the Category TextField has the same distance from the bottom.
  17. Select Accordion and do the same steps but also check the top dotted line, because we want the Accordion to have the same height as the main form has.
  18. I'll let you the pleasure to do the same for the rest of components. It's very important to design an application that can be resize by user and in the same time, all the buttons are on place.
  19. Last step is to make sure our application is not getting smaller then a certain size, as this will hide parts of our layout. So select the AnchorPane and from Inspector go to Layout and note down the Width and Height.
  20. Go back to NetBeans and open the file Main.java and add the following code just after stage.setScene(scene); (around line 26)

stage.setMinWidth(820);
stage.setMinHeight(550);

Use your own width and height. This will prevent user to reduce the width or height of your application to a value that will hide parts of your layout.

So now you should have done most of the design part and next time we'll see how can we enter some data into our newly created application…

Note: in case you miss something, here are the source files of the project till this point. 

© Oracle Blogs or respective owner

Related posts about /02. JavaFX