Android Question Can't start Designer in B4J

jparkerri

Member
Licensed User
Longtime User
I'm running B4J on Win7 and have installed java and the scene builder as directed. I start B4J, load the example CCTV source code, then click on Designer. I click on the 1.fxml and another B4J session starts up but no Designer. I've configured the paths as instructed.
What am I doing wrong? Thanks for any help.
 

Theera

Expert
Licensed User
Longtime User
In B4A has own designer,but in B4J ,you must use oracle's screen builder instead.


P.S. I would like to tell you that you add this mislocation.
 
Upvote 0

giga

Well-Known Member
Licensed User
Longtime User
Are you loading the layout?

MainForm = Form1

MainForm.RootPane.LoadLayout("1") 'Load the layout file.

MainForm.Title = "test application"

MainForm.Show

Also under Designer on the bar across the top
click 1.fxml and the Edit layout will launch the Java FX Scenebuilder.

** Note I have seen it take about 30seconds to appear on my PC **.
 
Upvote 0
Top