以编程方式更改 Android 设备的输入法 android

发布于 2024-11-27 11:18:28 字数 237 浏览 1 评论 0原文

我正在 Android 中开发一个小型应用程序,其中包含编辑文本和编辑文本。按钮。仅在编辑文本不为空后按钮才会可见。由于我使用的是 LG Optimums Android 设备,每当我单击编辑文本(因为它是 LG 设备)时,LG 键盘就会出现,但我不想要那个键盘,我想要 Android使用的键盘。我也知道我可以进入设置=>语言和语言键盘和键盘我可以更换那个键盘。但我不想使用它,我希望它只能通过编码来完成。

感谢您的任何帮助......

I am developing one small application in android which consist of an Edit Text & Button. Button will be visible only after edit text is not blank.Since I am having LG Optimums Android device, Whenever i click on Edit Text since it it LG device, LG Key Board will appear but i don't want that Key Board i want Android Key Board to use. I Also know that i can go into Setting=>Language & Key Board & i can change that Key Board. But i don't want to use that i want it should be done only through coding.

Thanx for any Help.....

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

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

发布评论

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

评论(4

丶视觉 2024-12-04 11:18:28

无法以编程方式更改用户的键盘设置。您唯一能做的就是建议用户更改它并帮助它这样做。例如,这将显示一个对话框供他们更改键盘:

private void showInputMethodPicker() {
        InputMethodManager imeManager = (InputMethodManager) getApplicationContext().getSystemService(INPUT_METHOD_SERVICE); 
        if (imeManager != null) {
            imeManager.showInputMethodPicker();
        } else {
            Toast.makeText(this, R.string.not_possible_im_picker, Toast.LENGTH_LONG).show();
        }
    }

It's not possible to change the keyboard settings for the user programmatically. The only thing you can do is advise the user to change it and help it to do so. For instance, this will show a dialog for them to change keyboard:

private void showInputMethodPicker() {
        InputMethodManager imeManager = (InputMethodManager) getApplicationContext().getSystemService(INPUT_METHOD_SERVICE); 
        if (imeManager != null) {
            imeManager.showInputMethodPicker();
        } else {
            Toast.makeText(this, R.string.not_possible_im_picker, Toast.LENGTH_LONG).show();
        }
    }
无法回应 2024-12-04 11:18:28

我见过,来自一位 Android 员工这里,根本不可能以编程方式更改 IME - 它完全取决于最终用户选择他们喜欢的 IME。

As far as I've seen, and from an Android employee here, it is simply not possible to change the IME programatically - it is completely dependent on the end-user to choose their preferred IME.

计㈡愣 2024-12-04 11:18:28

就像保罗说的,你不能改变输入法;但是,您可以通过隐藏 Android 软键盘来禁用它

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);

,然后创建一个类似于 Android 软键盘的视图。 看看这个。

Like Paul said you cannot change the IME; however, you can disable the android softkeyboard by hiding it

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);

then create a view that resembles an android softkeyboard. Check this out.

梦太阳 2024-12-04 11:18:28

在按钮单击上从应用程序更改键盘:

             Button keyboard = (Button) findViewById(R.id.keyboardChange);
    keyboard.setOnClickListener(new View.OnClickListener() {
        public void onClick(View view)
        {  InputMethodManager imeManager = (InputMethodManager) getApplicationContext().getSystemService(INPUT_METHOD_SERVICE);
            imeManager.showInputMethodPicker();
        }
    });

Change the keyboard from your app on Button Click :

             Button keyboard = (Button) findViewById(R.id.keyboardChange);
    keyboard.setOnClickListener(new View.OnClickListener() {
        public void onClick(View view)
        {  InputMethodManager imeManager = (InputMethodManager) getApplicationContext().getSystemService(INPUT_METHOD_SERVICE);
            imeManager.showInputMethodPicker();
        }
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文