我有一個Android活動,並且在整個佈局中有一個EditText
。出於某種原因,只要活動開始,鍵盤就會出現。 我已經試過下面的事情都:防止EditText自動對焦
配售這兩個在
OnStart
:FindViewById<EditText> (Resource.Id.searchText).ClearFocus(); FindViewById<EditText> (Resource.Id.searchText).Selected = false;
添加
LinearLayout
與這兩個屬性:android:focusable="true" android:focusableInTouchMode="true"
添加在另一個內部的以下標籤上的佈局:
android:focusable="true" android:focusableInTouchMode="true"
添加該到我的活動清單:
android:windowSoftInputMode="stateHidden"
但仍然,活動開啓時鍵盤打開。我可能做錯了什麼?
爲了誰正在查看,並考慮標記爲重複,請不要「T。我讀過[這個問題](http://stackoverflow.com/questions/1555109/stop-edittext-from-gaining-focus-at-activity-startup)並嘗試了一切。 –