[codenameone-discussions] Native Maps are black on Android M on first run only

2016-10-25 Thread nickkoirala
On Android M devices the first time you run the app with native Google Maps it is black (with a google logo, with no map content) the next time the app is run then it is Ok. This happens even if the location permission box is loaded a number of forms before any form that uses the map - it

[codenameone-discussions] Re: An exception occurred during transition paint this might be valid in case of a resize in the middle of a transition

2016-10-25 Thread Shai Almog
Sounds like a bug, I also think this method accepts radians but I don't recall for sure. Steve? -- 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] Re: Problems generating ios build

2016-10-25 Thread romancanoniero
sorry, where is that? i didnt change anything On Tuesday, October 25, 2016 at 10:40:21 PM UTC-3, Shai Almog wrote: > > Did you enable double factor authentication in your apple account? > -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions"

[codenameone-discussions] Re: How to show the list data in search popup result using AutoCompleteTextField

2016-10-25 Thread Shai Almog
The keyword was "store the meta-data elsewhere". Auto-complete works only with Strings as it is based on a text field. You can have a separate vector/map that includes the full additional meta data but naturally you can't add it to the list. -- You received this message because you are

[codenameone-discussions] Re: IOS certificate wizzard doesnt work

2016-10-25 Thread Shai Almog
Did you enable double factor authentication for your apple account? -- 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] Re: Problems generating ios build

2016-10-25 Thread Shai Almog
Did you enable double factor authentication in your apple account? -- 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

Re: [codenameone-discussions] Re: Help needed on ANDROID: Native Maps and Virtual keyboard

2016-10-25 Thread Steve Hannah
I can't seem to reproduce this issue. I have a few apps using Google maps, with text boxes, and they all seem to be working fine for me on Android. Please file an issue in the issue tracker with a test case, and I'll look at it. Steve On Mon, Oct 24, 2016 at 7:34 PM, Shai Almog

[codenameone-discussions] Re: An exception occurred during transition paint this might be valid in case of a resize in the middle of a transition

2016-10-25 Thread Gareth Murfin
Looks like it happens when you pass something like this pathStatic.arc(xPos, yPos, circleW, circleH , 180, 180); // *ie the same start and complete angle* Turned out to be a bug in my logic as I should not have been passing the same value like that, but I think that still maybe qualifies as a

[codenameone-discussions] Multilist emblem lazy loading

2016-10-25 Thread stemawebmob
Hello, Is it possible to display a multilist with a placeholder image as the emblem for each item and then lazy load the proper images for each one of them? I have a list of about 150 items whose images are downloaded from the server and it takes a long time to load the whole thing at once.

[codenameone-discussions] Re: How to show the list data in search popup result using AutoCompleteTextField

2016-10-25 Thread kousik mondal
My implementation : public void search(){ Form hi = new Form("Auto Complete", new BoxLayout(BoxLayout.Y_AXIS)); // List list = new com.codename1.ui.List(createGenericListCellRendererModelData()); Vector v = new Vector(); for( int i =0; i<10 ;