[codenameone-discussions] Problem with multiple LocalNotifications

2016-12-22 Thread CS
Dear CNO, If you are experiencing an issue please mention the full platform your issue applies to: Device: Android When I setup notifications like this: >LocalNotification n = new LocalNotification(); n.setId("demo-notification"); n.setAlertTitle("Break Time!");

[codenameone-discussions] Re: Repaint dialog inconsistent

2016-12-22 Thread Shai Almog
Hi, I would not do that sort of thing in a dialog as dialogs are pretty complex internally. Do you have a screenshot? -- 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,

Re: [codenameone-discussions] Compilation error - generics

2016-12-22 Thread Bryan Buchanan
OK - thanks Steve - I didn't think to look at Integer class. On Friday, December 23, 2016 at 12:01:38 PM UTC+10, Steve Hannah wrote: > > Currently Integer doesn't implement Comparable. Its on the to do list so > hopefully we'll have this soon. In the mean time, use the 2-arg version of >

Re: [codenameone-discussions] Compilation error - generics

2016-12-22 Thread Steve Hannah
Currently Integer doesn't implement Comparable. Its on the to do list so hopefully we'll have this soon. In the mean time, use the 2-arg version of Collections.max(Collection, Comparable), and pass it a comparable that can compare integers. Steve On Thu, Dec 22, 2016 at 5:58 PM, Bryan Buchanan

[codenameone-discussions] Windows UWP Timeframe?

2016-12-22 Thread mcw
Do you have a timeframe for the release of the Windows UWP version of CodenameOne? I was presently surprised how well my apps worked on Windows but I did end up with 2 showstopper bugs which don't seem to be going anywhere. Trying to display keyboard on Windows UWP device crashes app

[codenameone-discussions] Re: Tabs tittle text scrolling issue

2016-12-22 Thread kousik mondal
After defining those constants there is no change. I can not see the full text of tab name. On Thursday, 22 December 2016 13:25:40 UTC+5:30, Shai Almog wrote: > > Do you mean give different sizes to each tab? > Try defining the following theme constants: > tabsFillRowsBool=true >

[codenameone-discussions] Re: Repaint dialog inconsistent

2016-12-22 Thread Jérémy MARQUER
Hi, I'm dragging in a container which is inside the dialog Drag & drop work well inside my dialog. Problem is the repaint that occur at the time of the drop. On Thursday, December 22, 2016 at 8:54:15 AM UTC+1, Shai Almog wrote: > > Hi, > are you dragging outside of the dialog or within? >