我正在编写一个应用程序,它使用以下代码在正在运行的应用程序的屏幕上绘制一个编辑文本:
WindowManager.LayoutParams params = new WindowManager.LayoutParams(
WindowManager.LayoutParams.WRAP_CONTENT,
WindowManager.LayoutParams.WRAP_CONTENT,
WindowManager.LayoutParams.TYPE_PHONE,
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
| WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
PixelFormat.TRANSLUCENT);
windowManager = (WindowManager) getSystemService(WINDOW_SERVICE);
windowManager.addView(mEditText, params);
编辑文本的 xml 是:
<EditText
android:id="@+id/mEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="3"
android:inputType="textAutoComplete|text"
android:focusable="true"
android:focusableInTouchMode="true" />
然而,专注于此并不会调出键盘。我还尝试使用 onFocusListener 以编程方式提出它:
mEditText.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if(hasFocus) {
Log.d("", "Has focus");
((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE)).showSoftInput(v, InputMethodManager.SHOW_IMPLICIT);
} else {
Log.d("", "Lost focus");
}
}
});
但是,尽管这被称为,从 logcat 中可以看出,但没有任何反应。到目前为止,我发现显示键盘的唯一方法是使用:
getSystemService(Context.INPUT_METHOD_SERVICE)).toggleSoftInput(0, 0);
但这似乎是在屏幕上输入而不是在编辑文本中。当显示编辑文本时,我也尝试过清晰的焦点,但无济于事。
我猜这个问题是因为我使用的是“浮动窗口”,但必须有一种方法来完成这项工作,因为 Playstore 上存在诸如浮动计算器之类的应用程序,这些应用程序需要输入。有人有什么想法吗?我很难过:(