Tema: [ CONSULTA ] Problema navegacion intems
Ver Mensaje Individual
  #1  
Viejo 22/02/14, 13:12:03
Array

[xs_avatar]
canogt canogt no está en línea
Miembro del foro
 
Fecha de registro: nov 2012
Localización: Tenerife
Mensajes: 168
Modelo de smartphone: lg g3
Tu operador: Vodafone
Problema navegacion intems

Buenos días,

Tengo un problemilla con la navegación entre items en un layout.

no tengo definida ninguna propiedad de navigable o de focus, no tendría que ir pasando de un edittext a otro sin problema??

Por ejemplo en este linearlayout llego al primer campo y si pulso en el teclado para que vaya al siguiente edittext no hace nada, se queda en el primero siempre.

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
androidrientation="horizontal">

<TextView
android:id="@+id/lbPai"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.8"
android:text="@string/strPai" />

<EditText
android:id="@+id/tiempoName"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.3"
android:hint="00"
android:inputType="number"/>

<TextView
android:id="@+id/lbsepara"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.1"
android:text=":" />

<EditText
android:id="@+id/segName"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.3"
android:hint="00"
android:inputType="number" />

<TextView
android:id="@+id/lbmin"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:text="min" />

</LinearLayout>

Gracias
Responder Con Cita