在android的實踐開發中,爲了界面的美觀,每每那些搜索框並無帶搜索按鈕,而是調用了軟鍵盤的搜索按鈕,完成此次時間
好吧!直接上代碼!java
<EditText
android:id="@+id/my_chat_seach" android:layout_width="fill_parent" android:layout_height="23dp" android:layout_centerVertical="true" android:layout_marginRight="6dip" android:layout_toRightOf="@id/my_seach_item_1_button" android:background="@color/white" android:gravity="center_vertical" android:hint="@string/search" android:imeOptions="actionSearch" android:singleLine="true" android:textColor="#8e8787" android:textSize="13sp" />
xml配置文件中 最重要的一個屬性是: android:imeOptions=」actionSearch」,從而調用軟鍵盤時,回車鍵就會顯示搜索二字。
同時在androidMainfest.xml文件中在此Activity中寫入 android:windowSoftInputMode=」adjustPan」,能夠防止軟鍵盤會把原來的界面擠上去的問題。
那麼在該activity中,如何操做呢?android
seachEditText = (EditText) findViewById(R.id.my_chat_seach); watchSearch();
而後markdown
/** * @方法說明:監控軟鍵盤的的搜索按鈕 * @方法名稱:watchSearch * @返回值:void */ public void watchSearch() { seachEditText.setOnEditorActionListener(new OnEditorActionListener() { @Override public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { if (actionId == EditorInfo.IME_ACTION_SEARCH) { // 先隱藏鍵盤 ((InputMethodManager) seachEditText.getContext() .getSystemService(Context.INPUT_METHOD_SERVICE)) .hideSoftInputFromWindow(ChatFriendsGroudSeach.this .getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); // 搜索,進行本身要的操做... seachList(viewIndex);//這裏是我要作的操做! return true; } return false; } }); }
好的!完成!ide