Я хочу показать опции на моем счетчике, когда этот счетчик получит фокус.Проблема заключается в переходе фокуса в другое текстовое представление, игнорируя счетчик.
Это код XML:
<LinearLayout>
<TextView
android:id="@+id/lbTratamento"
android:text="@string/lbTratamento"
style="@style/label_padrao" />
<EditText
android:id="@+id/txtTratamento"
android:layout_weight="2"
style="@style/txt_padrao"
android:nextFocusDown="@+id/spnTipo" />
<TextView
android:id="@+id/lbTipo"
android:text="@string/lbTipo"
style="@style/label_padrao" />
<Spinner
android:id="@+id/spnTipo"
style="@style/spinner_padrao"
android:layout_width="150dp" />
</LinearLayout>
<LinearLayout>
<TextView
android:id="@+id/lbPalavraChave"
android:text="@string/lbPalavraChave"
style="@style/label_padrao" />
<EditText
android:id="@+id/txtPalavraChave"
android:layout_weight="2"
style="@style/txt_padrao"
android:nextFocusDown="@+id/spnSexo"/>
<TextView
android:id="@+id/lbSexo"
android:text="@string/lbSexo"
style="@style/label_padrao" />
<Spinner
android:id="@+id/spnSexo"
style="@style/spinner_padrao"
android:layout_width="150dp"
android:focusable="true"
android:focusableInTouchMode="true" />
</LinearLayout>
Возможно ли это сделать с помощью свойств XML?
Спасибо!