我有一個TextInputLayout
的佈局,裏面有EditText
。TextInputLayout自動對焦
加載佈局時,EditText
立即處於編輯模式,鍵盤沒有彈起,但光標閃爍,提示不在EditText
之內,但在其上方。
我想讓提示動畫出EditText,只有使用第一次點擊EditText
。
我該如何做到這一點?我在EditText
和TextInputLayout
上嘗試了clearFocus()。
我的XML:
<android.support.design.widget.TextInputLayout
android:id="@+id/textInputLayout"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<EditText
android:singleLine="true"
android:id="@+id/case_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Case name" >
</EditText>
</android.support.design.widget.TextInputLayout>
@Kuffs機器人:windowSoftInputMode = 「stateHidden」 也不管用,歡迎您來嘗試。 – aviran
也許我提出的問題並不是一個好例子,但也有很多其他人問同樣的問題。請使用搜索。 http://stackoverflow.com/questions/5550429/edittext-android-automatic-focus檢查所有答案不只是接受的答案。 – Kuffs
這一個最有活性http://stackoverflow.com/questions/1555109/stop-edittext-from-gaining-focus-at-activity-startup – Kuffs