|    
			
				18/04/2014, 11:24
			
			
			  | 
  |   |  | Moderador |  |  Fecha de Ingreso: marzo-2005 Ubicación: Monterrey, México 
						Mensajes: 7.321
					 Antigüedad: 20 años, 7 meses Puntos: 1360 |  | 
  |  Respuesta: Webview sin foco  
    
Código Java:
 Ver originalwebview.requestFocus(View .FOCUS_DOWN);    webview.setOnTouchListener(new View .OnTouchListener() {        @Override        public boolean onTouch(View  v, MotionEvent event) {            switch (event.getAction()) {                case MotionEvent.ACTION_DOWN:                case MotionEvent.ACTION_UP:                    if (!v.hasFocus()) {                        v.requestFocus();                    }                    break;            }            return false;        }    });
Fuente: http://stackoverflow.com/questions/4...-soft-keyboard     |