5
  <SplitWindow id="home" platform="ios" formFactor="tablet">
            <Require src="master" id="master"/>
            <Require src="detail" id="detail"/>
  </SplitWindow>

I have a strange behavior if I drag horizontally the black separation line between the two windows. The windows change size adapting to my movements.

enter image description here enter image description here enter image description here

And, if I change the width of the windows is even easier to identify the black separation line

function demo() {
Alloy.Globals.master.win.width = 512;
Alloy.Globals.detail.win.width = 512;
}

enter image description here enter image description here

[For test purpose you have to aim the exact pixel of the black separation line ]

Could you tell why is this happening and how do I stop this behavior??

jay
  • 1,453
  • 1
  • 11
  • 30
  • Can you be a bit clearer what the "strange behavior" is? I'm guessing it's that the two lines are different widths. But I have to guess... – Dawson Toth Jan 07 '14 at 04:00
  • Have you tried setting `touchEnabled=false` on the `SplitWindow`? – kaspermoerch Jan 21 '14 at 08:34
  • 1
    The problem is that those 2 lines are not different "entities", a second before the splitview works properly a second after it messes up everything and there is no way to set those sizes – Zerho Jan 23 '14 at 09:35

1 Answers1

0

After I saw this problem posted, I tested my own SplitWindow application (which is not an Alloy application) and the bug exists there as well.

Everything I tried to prevent this from happening was useless. I believe it is to be considered a bug and should be reported at the Titanium JIRA.

kaspermoerch
  • 16,127
  • 4
  • 44
  • 67