[codenameone-discussions] Re: Picker Transparency on IOS 12.1.1

2019-01-19 Thread Shai Almog
Picker is surprisingly inconsistent between versions of iOS. It's hard to 
know what Apple expects here, that's why we had to migrate to the 
lightweight approach.

-- 
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.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/6a6d0f8f-c8d3-4638-bb4d-5b99b076743a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: Picker Transparency on IOS 12.1.1

2019-01-19 Thread shop . service . assistant
Thanks.

That Worked.

However curious why IOS behaves this way.
Is IOS Expecting me to disable the parent on a Picker Event?



On Friday, January 18, 2019 at 10:21:37 AM UTC-5, shop.servic...@gmail.com 
wrote:
>
> If you are experiencing an issue please mention the full platform your 
> issue applies to:
> IDE: NetBeans/Eclipse/IDEA NetBeans 8.2
> Desktop OS Windows 10 Pro
> Simulator Latest
> Device IPAD MR7G2LL/A
>
> While Picker is visible, pressing the OK button on top causes the 
> TextField in parent component to go into edit mode and a keyboard pops up.
> However the Picker component is still visible.
>
> See attached Screen Shot
>
> Thoughts?
>

-- 
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.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/63a2cc60-abc9-4055-8b61-5965103c9720%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: setPreferredSize deprecated, however w/o size intervention the Dialog is 25% of the screen

2019-01-19 Thread shop . service . assistant
Thanks

On Friday, January 18, 2019 at 11:42:40 AM UTC-5, shop.servic...@gmail.com 
wrote:
>
> If you are experiencing an issue please mention the full platform your 
> issue applies to:
> IDE: NetBeans/Eclipse/IDEA NetBeans 8.2
> Desktop OS Windows 10 Pro
> Simulator Latest
> Device PC, Android & IOS
>
> Dialog dlg = new Dialog("Select Service Job");
> dlg.setPreferredSize(new 
> Dimension(Display.getInstance().getDisplayHeight(), 
> Display.getInstance().getDisplayWidth()));
> dlg.setUIID("Dialog");
>
> Is there an acceptable alternative to force a Dialog to consume the full 
> screen?
>
> Thanks in Advance.
>
>

-- 
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.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/0ff7be44-0d01-4de5-9747-e5687b5c7538%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: Swing JTabbedPane look and feel

2019-01-19 Thread shop . service . assistant
Thanks

On Friday, January 18, 2019 at 11:48:36 AM UTC-5, shop.servic...@gmail.com 
wrote:
>
> If you are experiencing an issue please mention the full platform your 
> issue applies to:
> IDE: NetBeans/Eclipse/IDEA NetBeans 8.2
> Desktop OS Windows 10 Pro
> Simulator Latest
> Device PC, Android, IOS
>
> Is it possible to render a TAB as in Javax.swing.JTabbedPane?
>
> Please see attached pic. (Note the horizontal spacing between tabs and the 
> slightly rounded corners)
>
> Thoughts?
>

-- 
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.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/627a9045-6d26-4fdf-8832-096a63e3eaa2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: Swing JTabbedPane look and feel

2019-01-19 Thread Shai Almog
You can use 9-piece image borders for the background of Tab. Spacing is 
just a matter of setting the padding correctly.

-- 
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.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/0fe9948a-8ee9-4291-9958-613865fbc275%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: setPreferredSize deprecated, however w/o size intervention the Dialog is 25% of the screen

2019-01-19 Thread Shai Almog
Use dlg.show(int, int, int, int) which lets you explicitly size the dialog. 
Alternatively if you cover the content of the dialog there are several 
strategies to set its size correctly.

-- 
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.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/e90e27f8-82fe-4c50-a50f-df50df3ed049%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: capture event while phone is editing .

2019-01-19 Thread Shai Almog
Are you using lightweight picker or the heavyweight picker?

-- 
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.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/c9f22ca3-7446-49b6-8bbb-c0e72b71756e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: Picker Transparency on IOS 12.1.1

2019-01-19 Thread Shai Almog
Are you using the lightweight picker?
I would suggest using lightweight mode in the picker for maximum 
consistency. We might flip the default to use lightweight mode on iOS.

-- 
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.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/548adfe1-fed0-47e6-a77d-67feef7b5e83%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.