Google Android 中的输入法

Google IME in Android

我目前正在开发一个 Android 应用程序,它可以通过软键盘接收用户输入。但是当我的键盘出现时出现了一些问题,当我使用下面的代码时只有英文键盘:

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

并且 Google IME 显示没有我的默认语言 (这意味着我无法更改为其他语言,因为没有选项卡 select),但是我搜索了整篇文章,似乎没有办法通过代码更改输入法语言。

我使用 LIBGDX,无论是它的 ui 元素 (TextField),还是从 Android 直接调用它,都无法使用我的默认语言显示 Google IME (中国人)。但如果我使用系统 IME,它可以按预期工作。

为了解决其他问题,我可以在其他应用程序中使用 Google IME 没有任何问题,而且我还 post 用于调用 InputMethodManager 的代码。

package my.package;
import android.app.Service;
import android.content.Context;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.os.Build;
import android.os.Handler;
import android.os.LocaleList;
import android.os.Looper;
import android.text.InputType;
import android.util.DisplayMetrics;
import android.view.inputmethod.InputMethodManager;
import android.view.inputmethod.InputMethodSubtype;
import android.widget.EditText;

import java.util.Locale;

import my.package.Debugger;


public final class AndroidKeyboardAdapter implements KeyboardAdapter{
    InputMethodManager imm;
    Context context;
    EditText text;
    public AndroidKeyboardAdapter(Context context) {
        this.context = context;
        imm = (InputMethodManager)context.getSystemService(Service.INPUT_METHOD_SERVICE);
    }

    public void showKeyboard() {
        text = new EditText(context);

        Locale locale;
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            locale = context.getResources().getConfiguration().getLocales().get(0);
            for(int i = 0; i < context.getResources().getConfiguration().getLocales().size();i++)
                Debugger.LogInConsole(context.getResources().getConfiguration().getLocales().get(i).getCountry()); // show TW
        } else{
            //noinspection deprecation
            locale = context.getResources().getConfiguration().locale;
            Debugger.LogInConsole(locale.getCountry()); // not doing anything
        }
        Debugger.LogInConsole(Locale.getDefault().toString()); //show zh_tw


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

    public void hideKeyboard() {
        imm.hideSoftInputFromWindow(text.getWindowToken(), 0);
    }


    public void onResume() {
        text.requestFocus();

        text.postDelayed(new Runnable() {
            @Override
            public void run() {
                // TODO Auto-generated method stub
                imm.showSoftInput(text, 0);
            }
        },200);
    }

    @Override
    public String getText() {
        return text.getText().toString();
    }
}

同时提供 LIBGDX 在 IMM 上处理的源代码:

@Override
    public void setOnscreenKeyboardVisible (final boolean visible) {
        handle.post(new Runnable() {
            public void run () {
                InputMethodManager manager = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
                if (visible) {
                    View view = ((AndroidGraphics)app.getGraphics()).getView();
                    view.setFocusable(true);
                    view.setFocusableInTouchMode(true);
                    manager.showSoftInput(((AndroidGraphics)app.getGraphics()).getView(), 0);
                } else {
                    manager.hideSoftInputFromWindow(((AndroidGraphics)app.getGraphics()).getView().getWindowToken(), 0);
                }
            }
        });
    }

编辑: 找到亲戚issue,据报道,LIBGDX针对英文开发者做了具体配置,如果你是其他语言开发者,你不应该使用TextField UI并调用直接IMM,只要用下面的代码加上Label UI,就OK了...

   label.addListener(new ClickListener() {
        @Override
        public void clicked(InputEvent event, float x, float y) {
            Gdx.input.getTextInput(new Input.TextInputListener() {
                @Override
                public void input(String text) {
                    label.setText(text);
                    Debugger.LogInConsole(text);
                }

                @Override
                public void canceled() {

                }
            },"","","");
        }
    });

浪费了很多时间阅读源代码,希望这对其他人有所帮助。