[codenameone-discussions] Re: having trouble with form.java and form.gui

2019-12-05 Thread Charles G
in the xml file (form.gui) it has the right info including the text of the 
button and text area. But in the form.java it has everything but  the "DO 
NOT TOUCH ' area.

On Wednesday, December 4, 2019 at 10:30:13 PM UTC-5, Charles G wrote:
>
>
> IDE: IDEA plugin 2019.3
> Linux 19.2
> Simulator 
> Laptop hp
> GUI builder 6.4
>
> using Gui builder to place button and text on phone display and saved it. 
> xml file form,gui correctly created. but form.java not fully created from 
> xml file. (component button text info)
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/18afbb94-eddf-4256-8372-16a791102acf%40googlegroups.com.


[codenameone-discussions] Re: having trouble with form.java and form.gui

2019-12-05 Thread Shai Almog
What's the content of the GUI java file that you see?

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/23f2596d-8622-4c41-8cda-6cc9dd6c9075%40googlegroups.com.


[codenameone-discussions] Re: Bluetooth library leaves app on white screen when it turns on bluetooth

2019-12-05 Thread Gareth Murfin
 uitimer fixes it!.. 


new UITimer(new Runnable() { //use this to fix the bug where it 
goes to a white screen when initialised.
public void run()
{   
if (USE_BLUETOOTH)
{
_("# kicking off the bluetooth party! a #");
//we want to show a dialog spinning while this 
happens,
//its already doing that from the form we made in 
the ui builder
startBluetooth(HobIncludeBluetoothConnect);
}
}
}).schedule(1000, false, f);

On Thursday, December 5, 2019 at 7:27:31 PM UTC+8, Gareth Murfin wrote:
>
> The Bluetooth library leaves app on white screen when it turns on 
> bluetooth, there seems to be no way to get around this, I need to quit app 
> and reload to get past it. Has anyone managed to get around this?
>

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/0e3e9bca-a925-4f5a-beb3-f2c9640065d7%40googlegroups.com.


[codenameone-discussions] Bluetooth library leaves app on white screen when it turns on bluetooth

2019-12-05 Thread Gareth Murfin
The Bluetooth library leaves app on white screen when it turns on 
bluetooth, there seems to be no way to get around this, I need to quit app 
and reload to get past it. Has anyone managed to get around this?

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/f6ee88b8-e10a-471a-8138-e2a4ae413840%40googlegroups.com.