Quantcast
Channel: Appcelerator Developer Center Q&A Tag Feed (keyboard)
Viewing all articles
Browse latest Browse all 352

keyboard is overlying the textfield

$
0
0

I am developing an app using titanium classic, I have a form with a lot of text fields, when I focus on the text field at the bottom, the keyboard is displayed and overylay on the text field so I don't see what I am writing, is there any solution so I show what is written on the textfield ?

my code is very simple

var formView = Ti.UI.createView({
    width : '100%',
    height : '100%',
    top : 0,
    contentWidth : 'auto',
    contentHeight : 'auto',
    scrollType : 'vertical',
    layout : 'vertical'
});
 
 
var tf_id = Titanium.UI.createTextField({
    color : '#336699',
    hintText : '????:  1017762087 ',
    textAlign : 'right',
    height : 35,
    top : 10,
    left : 20,
    width : 280,
    keyboardType : Titanium.UI.KEYBOARD_DEFAULT,
    returnKeyType : Titanium.UI.RETURNKEY_DEFAULT,
    borderStyle : Titanium.UI.INPUT_BORDERSTYLE_ROUNDED,
 
});
 
formView.add(tf_id);
complainForm.add(formView);

Viewing all articles
Browse latest Browse all 352

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>