hintText in TextField with align center

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

var text_field = Ti.UI.createTextField({
    textAlign: Ti.UI.TEXT_ALIGNMENT_CENTER,
    hintText: 'Value',
    keyboardType: Ti.UI.KEYBOARD_EMAIL,
    returnKeyType: Ti.UI.RETURNKEY_DONE,
    clearOnEdit: true
});
When align is Ti.UI.TEXT_ALIGNMENT_CENTER does not display a value hintText. How to solve this problem?

— asked 11 months ago by Maxim Khrichtchatyi
6 Comments
  • Are you trying on Android, iPhone or both? Which version of the SDK are you using?

    — commented 11 months ago by Malcolm Hollingsworth

  • Just tried, works on ios, doesnt work on android.

    — commented 11 months ago by Kami -

  • Platform: Android; Titanium SDK: 2.1.1.GA

    — commented 11 months ago by Maxim Khrichtchatyi

  • Show 3 more comments

Your Answer

Think you can help? Login to answer this question!