wei-spring / codenameone

Automatically exported from code.google.com/p/codenameone
0 stars 0 forks source link

ios app hangs when AutoCompleteTextField is in scrollable container #1295

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Paste the following code in the start() of a new HelloWorld codenameone 
project:

        if(current != null)
        {
            current.show();
            return;
        }  

        Form hi = new Form();
        hi.setLayout(new BorderLayout());
        Container c = new Container(new FlowLayout());
        c.setScrollable(true);

        String[] s = {"Java", "CN1", "Codename One", "Form", "Container", "Theme", "BorderLayout", "FlowLayout"};
        AutoCompleteTextField af = new AutoCompleteTextField(s);
        c.addComponent(af);

        hi.addComponent(BorderLayout.CENTER, c);
        hi.show();

2. Make a build for ios and install/run the program. Add random characters to 
the autocompletetextfield. Also, use the 'backspace' button. You can see the 
cursor is at the start of the textfield and it's 'blinking'.
3. The app will hang after some time.

What is the expected output? What do you see instead?
Expected output is a smooth textfield.

What version of the product are you using? On what operating system?
iOS 7. On Android, this is working well, as well as in the simulator.

Please provide any additional information below.
The hanging app is caused by a scrollable container. When the 
AutoCompleteTextField is not in a scrollable container, everything is OK. On 
Android, this is working OK, but on iOS (ios 7, didn't test on another 
version), it's not. This is seen on the new VM as well on the old VM.
When typing a word that's already in the list, the autocompletetextfield is 
working OK. 
When using a model instead of an Array, the same problem occurs.

Original issue reported on code.google.com by iolar...@gmail.com on 18 Jan 2015 at 2:05

GoogleCodeExporter commented 9 years ago
We recently made a fix for a regression introduced in text input on iOS. Can 
you check that it resolved this issue?
If not we'll reopen it.

Original comment by shai.almog on 1 Feb 2015 at 6:58