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>
請告訴我什麼是應該做的正確方法。 謝謝:)
如果我能給我一個賞金..不是我有任何(聲望)..還是......非常感謝@techieWings – chaitanyad
非常感謝好友! –
我錯過了。感謝反映:) – iroiroys