美文网首页
RecyclerView 中多个EditText切换问题

RecyclerView 中多个EditText切换问题

作者: 中路杀神ai | 来源:发表于2020-11-06 14:38 被阅读0次

    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

    相关文章

      网友评论

          本文标题:RecyclerView 中多个EditText切换问题

          本文链接:https://www.haomeiwen.com/subject/dzytbktx.html