2013-01-22 54 views
28

我想着重於下一個編輯文本後用戶填寫英寸該代碼工作絕對正常與EditText但是當我將它應用於AutoCompleteTextView鍵盤上的下一步按鈕doesn沒有工作。光標停留在原來的位置。 這是我使用的代碼:NextFocusDown無法使用AutoCompleteTextView

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

    <AutoCompleteTextView 
     android:id="@+id/etLN" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="3" 
     android:ems="10" 
     android:nextFocusDown="@+id/etC" 
     android:inputType="textPersonName" > 

     <requestFocus /> 
    </AutoCompleteTextView> 

    <EditText 
     android:id="@id/etC" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="4" 
     android:ems="10" 
     android:hint="0.0" 
     android:nextFocusDown="@+id/etD" 
     android:inputType="numberDecimal" 
     android:text="" /> 

    <EditText 
     android:id="@id/etD" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="4" 
     android:ems="10" 
     android:nextFocusDown="@+id/etLN2" 
     android:hint="0.0" 
     android:inputType="numberDecimal" 
     android:text="" /> 
</LinearLayout> 

請告訴我什麼是應該做的正確方法。 謝謝:)

回答

86

添加到您的AutoCompleteTextView

android:imeOptions="actionNext" 

,它應該工作。

+1

如果我能給我一個賞金..不是我有任何(聲望)..還是......非常感謝@techieWings – chaitanyad

+0

非常感謝好友! –

+0

我錯過了。感謝反映:) – iroiroys

相關問題