Issue
When using the texfield on android tablet in the following way, the background of the textfield and its cursor becomes invisible. Modal property true should cause the issue.
Tested on
Droid Razr 2.3.5 > non affected
Asus Transformer Tf101 with honeycomb(3.1) > affected
Repro sequence
/**
* @author Carlo Blanco Benitez
*/
var win = Ti.UI.createWindow({
backgroundImage:'guide_fond_notice.png',//backgroundImage attached
navBarHidden:true,
exitOnClose:true,
//modal:true,//having modal enabled
backgroundColor:'black',
top:'0dp',
left:'0dp',
right:'0dp',
bottom:'0dp'
});
var wrapper = Ti.UI.createView({
top:'0dp',
left:'0dp',
right:'0dp',
bottom:'0dp'
});
win.add(wrapper);
var textField = Ti.UI.createTextField({
color:'black',
width:'100dp',
height:'50dp',
returnKeyType: Titanium.UI.RETURNKEY_SEARCH,
autocorrect:false
});
wrapper.add(textField);
win.open();
Can not reproduce on either master or 1.8.2. Tested on ASUS Transformer (3.1).
Eduardo, did you run the test case attached in Description? That test case has totally different screenshots than what you attached. And in that test case, no matter modal is set as true or false, the text field and its cursor are always visible.
Closing ticket as the issue cannot be reproduced and due to the above comments.