latinime的简单介绍
如何调节LatinIME键盘上的字体大小
1、你可以可以在输入法中调节字体大小呀
2、你是不是觉得打字的时候字体大小分小呀
3、那就在输入法中设置大小或者去电脑设置中设置也可以呀
4、若有电脑点驱动问题,推荐你安装驱动人生这个软件
latinime.apk是什么
latinime.apk是手机自带的文字输入法,如果你安装有其他输入法,可以删除。
Android在LatinIME基础上如何加入中文输入法
【GB】提供简单的samplecode,如默认将俄语、英文、法语输入法勾选:1.新增文件LatinImeReceiver.JAVApackagecom.android.inputmethod.latin;importandroid.content.BroadcastReceiver;importandroid.content.Context;importandroid.content.Intent;importandroid.content.SharedPreferences;importandroid.content.SharedPreferences.Editor;importandroid.preference.PreferenceManager;importandroid.provider.Settings;importandroid.util.Log;importandroid.view.inputmethod.InputMethodInfo;importandroid.view.inputmethod.InputMethodManager;//importandroid.view.inputmethod.InputMethodSubtype;importandroid.text.TextUtils;publicclassLatinImeReceiverextendsBroadcastReceiver{privatestaticfinalStringTAG=LatinImeReceiver.class.getSimpleName();@OverridepublicvoidonReceive(Contextcontext,Intentintent){Log.d("LatinImeReceiver","step1");SharedPreferencessp=context.getSharedPreferences("com.android.inputmethod.latin_preferences",Context.MODE_PRIVATE);booleanhasSet=sp.getBoolean("has_set",false);if(!hasSet){Log.d("LatinImeReceiver","step2");Editoreditor=sp.edit();Log.d("LatinImeReceiver","step3");editor.putString(LatinIME.PREF_SELECTED_LANGUAGES,"en_US,ru,fr");//默认将英语、俄语勾选,具体该怎么写可以参考inputlanguageselection.java中的WHITELIST_LANGUAGESeditor.putBoolean("has_set",true);Log.d("LatinImeReceiver","step4");