3 Bugs in Titanium 1.3 Android

You must Login before you can answer or comment on any questions.

1.The application quit not programatically .

I create a window at app.js use following codes.

var win=null;
win = Titanium.UI.createWindow({
    url:'win/homeWindow.js',
    backgroundColor:'#000000',
    navBarHidden:true,
    fullscreen:true
});
win.orientationModes = [Titanium.UI.LANDSCAPE_LEFT];
win.open();
When I press "back" button on phone,the app will not quit but leave a splash image.

2.Buttons in scrollableView not fired

It's good to add touch and scroll feature on scrollableView in Ti 1.3. But I found the buttons(Button,ImageView,View) in my scrollableView are fired a click event.

3.The videoplayer will not closed programatically

The close/hide Methods totally not work.I can't close the movie when it complete.It same at KS 1.3.Please test it.

There should be more bug in current release.When will it fixed? Will it fixed in 1.3.1?And when it released. We are all have these bugs in our app.

— asked 3 years ago by Semon Xue
0 Comments

1 Answer

well actually on android scrollableView seems to only handle the scroll event. whats more, it is impossible to receive any input (events) on the contained displayed view AND containing window. ugh.

Your Answer

Think you can help? Login to answer this question!