6

我在使用屏幕键盘时遇到问题。我有一个EditText显示键盘的活动,以及一个转到第二个活动的按钮。第二个活动ProgressDialog在它的 上显示一个onCreate(),做一些事情,然后关闭ProgressDialog。问题是在ProgressDialog显示时,键盘也是如此。

我希望键盘在创建ProgressDialog. 我彻底搜索了 StackOverflow 和其他网站,但似乎没有任何东西适用于这种特殊情况。

我附上两张图片供您参考:

这是第一个活动的代码:

public class FirstActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        findViewById(R.id.button1).setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View arg0) {
                Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
                startActivity(intent);
            }
        });
    }
}

这是第二个活动的代码:

public class SecondActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.second);

        // TODO: hide keyboard here

        final ProgressDialog dialog = ProgressDialog.show(this, "", "Please wait...", true, false, null);

        // in real code, here there is an AsyncTask doing stuff...
        new Handler().postDelayed(new Runnable() {
            @Override
            public void run() {
                dialog.dismiss();
            }
        }, 5000);
    }
}

谢谢

4

5 回答 5

20

使用 phalt 发布的技术的变体解决:

InputMethodManager im = (InputMethodManager) this.getApplicationContext().getSystemService(Context.INPUT_METHOD_SERVICE);
im.hideSoftInputFromWindow(getWindow().getDecorView().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);

此代码在onCreate//期间正常工作onStartonResume因为不依赖于焦点视图来获取窗口令牌。

于 2012-05-03T12:05:36.553 回答
10

将此代码写入“SecondActivity”活动的 manifest.xml 文件中。

<activity name="EditContactActivity"
    android:windowSoftInputMode="stateAlwaysHidden">
    ...
</activity>
于 2012-05-03T10:06:22.087 回答
1

你也可以这样使用:

输入法管理器 imm;

在 onCreate() 方法中写下一行:

imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);

这行在按钮的onclick中:

imm.hideSoftInputFromWindow(arg0.getWindowToken(), 0);

例子:

public class FirstActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    findViewById(R.id.button1).setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View arg0) {

            imm.hideSoftInputFromWindow(arg0.getWindowToken(), 0);
            Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
            startActivity(intent);
        }
    });
}
}
于 2012-05-03T10:09:59.743 回答
0

如果在片段类中

@Override
    public void onResume()
    {
        getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
        super.onResume();
        }

如果在活动课上

 @Override
    public void onResume()
    {
        this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
        super.onResume();
        FetchLocation fl = new FetchLocation(mContext, locationResult);
    }
于 2015-03-24T10:55:12.853 回答
-1

你有没有尝试过:

InputMethodManager im = (InputMethodManager)
this.getApplicationContext().getSystemService(Context.INPUT_METHOD_SERVICE);

im.hideSoftInputFromWindow(this.getCurrentFocus().getWindowToken(),
InputManagerMethod.HIDE_NOT_ALWAYS);

这是我在想要隐藏键盘的地方输入的代码。

于 2012-05-03T10:34:03.803 回答