gpt4 book ai didi

android - 强制打开软键盘

转载 作者:IT王子 更新时间:2023-10-28 23:49:24 25 4
gpt4 key购买 nike

我正在尝试强制在 Activity 中打开软键盘并抓取输入的所有内容,因为我想自己处理输入,但我没有 EditText。目前我已经尝试过了,但它不起作用。我希望软键盘在 mAnswerTextView 下方打开(注意:它是 TextView 而不是 EditText)。

    InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
// only will trigger it if no physical keyboard is open
mgr.showSoftInput(mAnswerTextView, InputMethodManager.SHOW_IMPLICIT);
  1. 如何强制打开软键盘
  2. 我如何输入输入的所有内容,以便处理每个字符。处理完软键盘后,我想从软键盘中刷新每个字符。即,用户不能在软键盘中输入整个单词。

最佳答案

试试这个强制打开软键盘:

((InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE)).toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_IMPLICIT_ONLY);

然后您可以使用此代码关闭键盘:

((InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(_pay_box_helper.getWindowToken(), 0);

关于android - 强制打开软键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2479504/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com