RecyclerView 中多个EditText切换问题
nextFocusForward
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:id="@+id/et1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:imeOptions="actionNext"
android:inputType="text"
android:nextFocusForward="@+id/et" />
<EditText
android:id="@+id/et"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_weight="1"
android:inputType="text"
android:imeOptions="actionNext"
/>
</LinearLayout>
8feedd4f-b8fd-4009-aa74-4830dd18d59b.gif
网友评论