如何为编辑文本设置焦点和向下

时间:2012-12-13 09:24:48

标签: android xml android-layout

我没有在UI中编辑文本。当我们按向上和向下箭头时,我希望上下调焦。我使用了“android:nextFocusDown”,但它无效。

(例如我们使用tab来移动下一个光标)

是否有任何代码在xml中设置它,请让我知道。

1 个答案:

答案 0 :(得分:0)

试试这个:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    android:orientation="vertical">
    <EditText
        android:id="@+id/editText1"
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:imeOptions="actionNext"
        android:nextFocusDown="@+id/editText2" />
    <EditText
        android:id="@+id/editText2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>

希望这会对你有所帮助。

感谢。