Android 软键盘问题

发布于 2025-01-03 08:00:06 字数 118 浏览 1 评论 0原文

我的主要活动中有一个 EditText 小部件。当 EditText 小部件获得焦点时,将显示软键盘,当 EditText 小部件失去焦点时,将显示软键盘。但是,我想一直显示软键盘,直到主要活动是“销毁”。如何做到这一点?

I have an EditText widget in my main activity. when the EditText widget get the focus, the soft key board displays, when the EditText widget loses the focus. However, I want to display the soft key board all the time, until the main activity is Destroy. How to do this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅沫记忆 2025-01-10 08:00:06

您可以通过将以下内容添加到清单文件中的活动标记来做到这一点

 android:windowSoftInputMode="stateAlwaysVisible" 

You can do that by adding following to activity tag in your manifest file

 android:windowSoftInputMode="stateAlwaysVisible" 
飘过的浮云 2025-01-10 08:00:06

//显示软键盘

((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE))
                .showSoftInput(editText, 0);

//试试这个

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_‌​VISIBLE);

//To show softkeyboard

((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE))
                .showSoftInput(editText, 0);

//try this

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_‌​VISIBLE);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文