recycleView小部件中的下一个焦点方向

时间:2017-10-06 09:54:48

标签: java android android-recyclerview focus

当创建只包含两个editText小部件的简单recyclelerView时,键入数据时下一个焦点元素的方向就像在pic1上一样---如何在pic2上设置下一个焦点元素的方向? 欢呼声

pic1

pic2

我的简单代码

 <LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <EditText
        android:id="@+id/edit_text_left"
        tools:hint="editTextLeft"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="wrap_content" />

   <EditText        
        android:id="@+id/edit_text_right"
        tools:hint="editTextRight"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="wrap_content" />

</LinearLayout>

1 个答案:

答案 0 :(得分:1)

尝试使用android:imeOptions="actionNext"将焦点移至下一个Editext

<EditText
    android:id="@+id/edit_text_left"
    tools:hint="editTextLeft"
    android:layout_width="0dp"
    android:layout_weight="1"
    android:inputType="text"
    android:imeOptions="actionNext"
    android:layout_height="wrap_content" />

使你的布局像这样

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <EditText
        android:id="@+id/edit_text_left"
        tools:hint="editTextLeft"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:inputType="text"
        android:imeOptions="actionNext"
        android:layout_height="wrap_content" />

   <EditText        
        android:id="@+id/edit_text_right"
        tools:hint="editTextRight"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:inputType="text"
        android:imeOptions="actionNext"
        android:layout_height="wrap_content" />

</LinearLayout>