任何人都可以告訴如何讓「搜索」取代安卓鍵盤上的「開始」或「完成」按鈕。 (不是放大鏡)。Android鍵盤「開始」按鈕到「搜索」
6
A
回答
12
嘗試 myEditText.setImeActionLabel("Search",EditorInfo.IME_ACTION_UNSPECIFIED)
。 IME_ACTION_UNSPECIFIED
可以讓你把任何你想要的文字放在按鈕中。
16
像這樣
android:imeOptions="actionSearch"
可能會奏效。你的情況
也有像
android:imeActionLabel="Search"
編輯其他選項
請這個線程也。 LINK
根據以上鍊接,您只能在橫向模式下獲取全文。當IME具有大量的空間
完整的標籤僅顯示它 (例如,當標準的鍵盤處於全屏模式)。
,所以我想你可以使用android:imeOptions="actionSearch"
和文本Search
將僅出現在景觀。
4
試試這個:
<EditText
android:id="@+id/editTextSearch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:imeOptions="actionSearch"
android:singleLine="true" >
</EditText>
添加 「機器人:單線」 才能正常工作
0
添加以下兩個線路在的EditText標籤:
android:inputType="text"
android:imeOptions="actionSearch"
,並添加setOnEditorActionListener ()方法editText如下:
etSearch.setOnEditorActionListener(new TextView.OnEditorActionListener() {
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if(actionId == EditorInfo.IME_ACTION_SEARCH){
doSearch(); //Do whatever you intend to do when user click on search button in keyboard.
}
return true;
}
return false;
}
});
相關問題
- 1. 搜索鍵盤中的搜索按鈕
- 2. 檢測鍵盤搜索按鈕
- 3. 使用移動鍵盤搜索按鈕
- 4. 編程鍵盤上的搜索按鈕
- 5. Android手柄「搜索」按鈕按下自定義鍵盤
- 6. 在搜索欄鍵盤禁用「搜索」按鈕
- 7. 如何刪除android中的搜索按鈕軟鍵盤?
- 8. Android鍵盤佈局搜索
- 9. Android鍵盤 - 開始小寫
- 10. 將函數綁定到鍵盤中的「搜索」按鈕
- 11. 使用搜索查看時隱藏軟鍵盤上的搜索/搜索按鈕?
- 12. 禁用android鍵盤按鈕
- 13. Android鍵盤按鈕更改
- 14. 在SherlockActivity中按下搜索按鈕時關閉軟鍵盤
- 15. SUP通過原生Android搜索按鈕進行個性化鍵鍵盤
- 16. 如何在Espresso Test軟鍵盤模擬器上按「搜索按鈕」Android Studio
- 17. 我如何解僱鍵盤上關於UISearchBar的鍵盤上的搜索按鈕?
- 18. Android:在按鈕上隱藏鍵盤按
- 19. Android:按下鍵盤上的Done按鈕
- 20. 如何有iOS的搜索欄鍵盤搜索按鈕執行一個動作
- 21. 顯示按開始搜索時按Enter鍵
- 22. 如何在Robotium測試中點擊軟鍵盤'搜索'按鈕?
- 23. 如何禁用/啓用UISearchBar鍵盤的搜索按鈕?
- 24. 如何收聽searchView中的鍵盤搜索按鈕
- 25. 可可觸摸 - UISearchBar鍵盤 - 隱藏'搜索'按鈕
- 26. 在我的鍵盤上實現搜索按鈕
- 27. 使用iPhone多觸點鍵盤搜索按鈕
- 28. IBM Worklight 6.1 - 如何檢測鍵盤的「搜索」按鈕?
- 29. 工具欄中的搜索按鈕沒有顯示鍵盤
- 30. 無法隱藏鍵盤單擊搜索按鈕在UISearchBar
靜止影像越來越放大鏡.. plz幫助我 – Nemo
嘗試使用EditorInfo.IME_ACTION_UNSPECIFIED作爲動作 – NSjonas