0

我在 UI 中没有编辑文本。当我们按下向上和向下箭头时,我希望上下设置焦点。我用过“android:nextFocusDown”,但它不工作。

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

是否有任何代码可以在xml中设置它,请告诉我。

4

1 回答 1

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>

希望这对您有所帮助。

谢谢。

于 2012-12-13T09:52:17.457 回答