Edittext “lag” android
The first time i focus an edittext view i notice a lag of one or two seconds before i can write anything in the textbox. I notice this behavior even on an app without any code more than what's nessecary to initialize the application. What am i doing wrong? I've INSTANTLY fixed this issue for me; I saw in the DDMS that a lot of redraw's and recalculations were occurring while entering text, and a lot of info about RelativeLayouts were being called. So, I checked my layout; i had some Multi-Line EditText's who were direct children of a RelativeLayout. So, I wrapped those up into a Linear Layout,