--
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-discu...@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/79f99775-d2a4-4257-bcbf-656d69b626f7%40googlegroups.com.
Thanks. This was a regression from some recent changes. It is fixed now in Git and should be on the server soon.Steve
On Wed, Mar 2, 2016 at 5:27 AM, Gareth Murfin <gareth...@gmail.com> wrote:
Whoops that was confusing, steps to recreate, make a textfield, run app, tap textfield, type some text, keep the keyboard visible and tap somewhere else on your form other than the textfield. Observe text vanishes from textfield, this does not happen in standard android.
On Wednesday, March 2, 2016 at 9:24:59 PM UTC+8, Gareth Murfin wrote:My client just noticed that when the textfields in our app are not in focus and the user taps outside of the keyboard while it is showing (on Android) the text vanishes completely, I looked at the unselected state and it should have a proper text colour, the text is not even white or black it is simply gone, almost as if it is not painting in that circumstance, anyone else noticed 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+unsub...@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/79f99775-d2a4-4257-bcbf-656d69b626f7%40googlegroups.com.
Thanks. This was a regression from some recent changes. It is fixed now in Git and should be on the server soon.Steve
On Wed, Mar 2, 2016 at 5:27 AM, Gareth Murfin <gareth...@gmail.com> wrote:
Whoops that was confusing, steps to recreate, make a textfield, run app, tap textfield, type some text, keep the keyboard visible and tap somewhere else on your form other than the textfield. Observe text vanishes from textfield, this does not happen in standard android.
On Wednesday, March 2, 2016 at 9:24:59 PM UTC+8, Gareth Murfin wrote:My client just noticed that when the textfields in our app are not in focus and the user taps outside of the keyboard while it is showing (on Android) the text vanishes completely, I looked at the unselected state and it should have a proper text colour, the text is not even white or black it is simply gone, almost as if it is not painting in that circumstance, anyone else noticed 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+unsub...@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/79f99775-d2a4-4257-bcbf-656d69b626f7%40googlegroups.com.
public void paint(Graphics g) {
//the native input will show the string.
if(useNativeTextInput && Display.getInstance().isNativeEditorVisible(this)) {
return;
}
UIManager manager = getUIManager();
manager.getLookAndFeel().drawTextField(g, this);
if (drawCursor && hasFocus() && isEditable()) {
manager.getLookAndFeel().drawTextFieldCursor(g, this);
}
paintHint(g);
}
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/79f99775-d2a4-4257-bcbf-656d69b626f7%40googlegroups.com.
--
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+unsub...@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/cbddd504-7499-483b-9ac2-b40e638142bb%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to codenameone-discussions+unsub...@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/79f99775-d2a4-4257-bcbf-656d69b626f7%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/cbddd504-7499-483b-9ac2-b40e638142bb%40googlegroups.com.--
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+unsub...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.