[codenameone-discussions] Re: Textfields are right aligned

2016-08-03 Thread Shai Almog
Did you turn on RTL by mistake? -- 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

[codenameone-discussions] Re: Swipe to navigate

2016-08-03 Thread Shai Almog
I would use tabs and create the same container with different data to add in. You can set the tabs to be hidden. -- 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

[codenameone-discussions] Re: How to have a right side menu, with container in it

2016-08-03 Thread Shai Almog
You need to set the side component before adding the command. -- 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: Loading dialog on Android

2016-08-03 Thread Shai Almog
Hi, I think this is tested against null so setting it to false won't work as expected. Are you using the new peers by any chance? -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving

[codenameone-discussions] Re: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.hello/com.paypal.android.sdk.payments.PaymentActivity}; have you declared t

2016-08-03 Thread Shai Almog
That looks fine. Look in the codenameone_settings.properties and see that you didn't enter any spaces or special characters by mistake. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop

[codenameone-discussions] Textfields are right aligned

2016-08-03 Thread Gareth Murfin
Somehow once I have enteredt text into a textfield and move to the next one the text goes to being right aligned. I have checked and double checked the uiid, and it is not set to do this, so what else could it be ? -- You received this message because you are subscribed to the Google Groups

[codenameone-discussions] Swipe to navigate

2016-08-03 Thread Gareth Murfin
I have a single screen which shows some content from an array, I wish to be able to swipe left and right to go to the same screen but populate it with the next item in the array. What is the easiest way to do this ? I guess I could use a layeredLayout and have a container on top and detect the

[codenameone-discussions] Re: How to have a right side menu, with container in it

2016-08-03 Thread Gareth Murfin
there was a typo in that code i meant to put: smbForRightMenu.add(SideMenuRIGHT); smbForRightMenu.putClientProperty("SideComponent", SideMenuRIGHT); I tried the second approach just in case, think I read it on the blog, but neither seem to do it. On Wednesday, August 3, 2016 at

[codenameone-discussions] How to have a right side menu, with container in it

2016-08-03 Thread Gareth Murfin
No matter how often I try, I find the whole side menu thing quite confusing. Until now I have had to avoid right hand side menus because I simply cannot get them to work. Left hand side I have been able to get working using Toolbar, roughly something like this: Toolbar toolbarForLeftMenu; if

[codenameone-discussions] Loading dialog on Android

2016-08-03 Thread Carlos Verdier
Hi Did you guys removed the loading dialog on Android when using BrowserComponent? It's not there even if I write Display.getInstance().setProperty( "WebLoadingHidden", "false"); The thing is that I need it, because the webpage is not always rendered if the dialog don't show. Thanks -- You