7

我的应用适用于 Android 2.2 及更高版本。在其中,我使用ActionbarSherlock来允许对 3.0 之前的设备使用操作栏。我在操作栏中使用了 EditText 来允许用户输入文本以进行搜索。

Using the emulator, with Android 4.0 and 4.1 (I have not tried 3.x because it's not a tablet app), when the EditText is selected, the soft keyboard pops up as desired. 但使用 Android 2.2 或 2.3.3 时并非如此,它只是不显示。

EditText 的代码很简单:

item.setActionView(R.layout.collapsible_edittext);
etInput = (EditText) item.getActionView().findViewById(R.id.etInput);   
etInput.requestFocus();

布局:

<?xml version="1.0" encoding="utf-8"?>
<EditText xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/etInput"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:hint="@string/search_hint"
    android:lines="1" 
    android:maxLines="1"
    android:inputType="textFilter|textNoSuggestions"
    android:imeOptions="actionSend"/>

现在,我尝试在 之后立即使用此代码段专门显示软键盘etInput.requestFocus();,但没有任何区别:

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(etInput, InputMethodManager.SHOW_IMPLICIT);

我试图弄清楚这是 ActionbarSherlock 的问题还是更普遍的 Android 问题。我已经浏览了许多关于在 Activity 中强制软键盘显示的文章,但还没有找到解决方案。

谢谢

4

2 回答 2

4

我遇到了同样的问题……在我在 HTC Nexus One 上进行测试之前,一切正常。我最终将以下代码添加到附加到 AiontBarSherlock menuItem 的 onActionExpandListener 中。

item.setOnActionExpandListener(new OnActionExpandListener() {

    @Override
    public boolean onMenuItemActionExpand(MenuItem item) {
    // post delayed to allow time for edittext to become visible
    mHandler.postDelayed(new Runnable() {
        @Override
        public void run() {
        mSearchText.clearFocus();
        showKeyboard();         
        mSearchText.requestFocus();
        }
    }, 400);

    return true;
    }

    @Override
    public boolean onMenuItemActionCollapse(MenuItem item) {
    hideKeyboard();
    return true;
    }
});

private void showKeyboard() {
 if (android.os.Build.VERSION.SDK_INT < 11) {
    mInputManager.toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_IMPLICIT_ONLY);
 } else {
    mInputManager.showSoftInput(mSearchText, InputMethodManager.SHOW_IMPLICIT);
 }
}

private void hideKeyboard() {
 if (android.os.Build.VERSION.SDK_INT < 11) {
   mInputManager.hideSoftInputFromWindow(getActivity().getWindow().getCurrentFocus().getWindowToken(),0);      
 } else {
    mInputManager.hideSoftInputFromWindow(getActivity().getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);
 }  
}
于 2013-03-20T22:28:39.160 回答
0

对于那些在 Mono droid 上使用 C sharp 工作的人,代码如下:

         new Thread(new ThreadStart(() =>
         {
             while (DateTime.Now < _dt)
                 Thread.Sleep(10);
             RunOnUiThread(showKeyboard);
         }
           )).Start();



     protected void showKeyboard()
     {
         int osSDK = (int)Android.OS.Build.VERSION.SdkInt;

         if (osSDK < 11)
         {
             this.mm().ToggleSoftInput(ShowFlags.Forced, HideSoftInputFlags.ImplicitOnly);
         }
         else
         { 
            EditText editTextView = FindViewById<EditText>(Resource.Id.EditTextSubCellAddVenue);
            this.mm().ShowSoftInput(editTextView, ShowFlags.Implicit);
         }
     }

     protected void hideKeyboard()
     {
         int osSDK = (int)Android.OS.Build.VERSION.SdkInt;

         if (osSDK < 11)
         {
             this.mm().HideSoftInputFromWindow(this.Window.CurrentFocus.WindowToken, 0);
         }
         else
         {
             this.mm().HideSoftInputFromWindow(this.CurrentFocus.WindowToken, HideSoftInputFlags.NotAlways);
         }
     }

     protected InputMethodManager mm()
     {
         if (imm == null)
         {
             EditText editTextView = FindViewById<EditText>(Resource.Id.EditTextSubCellAddVenue);

             imm = (InputMethodManager)this.GetSystemService(Android.Content.Context.InputMethodService);
         }

         return imm;
     }
于 2013-04-08T02:28:02.757 回答