我正在开发Android自定义键盘。我在代码中导入了android.view.inputmethod.InputMethodSubtype
,这样做我收到一条错误消息,例如导入的无法解析。是否有我需要安装的eclipse插件,据我所知,1.6以上的Android版本将支持IMF。
答案 0 :(得分:0)
这个问题已经很老了,但我正在回答这个问题,因为这可能有助于其他用户看到这个问题。
OP询问是否有任何插件可以安装Eclipse来解决问题,但现在我们有Android Studio。对于那些想要实施Android Custom Keyboard的人: 首先,下载适用于Android自定义键盘的Google示例项目。
有三个重要的功能可以决定你想要哪一个:1)主题(自定义布局),2)子类型和3)表情符号。
对于主题/布局:创建布局文件。请参阅以下示例代码:
<com.domain.keyboard.android.LatinKeyboardView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/keyboard"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/kb_bg_9"
android:keyBackground="@drawable/key_bg_fill_white"
android:keyPreviewLayout="@layout/key_preview_layout"
android:keyPreviewOffset="@dimen/keyPreviewOffset"
android:keyTextColor="@color/white"
android:popupLayout="@layout/keyboard_popup_layout" />
并在SoftKeyboard.java
中使用以下代码:
@Override
public View onCreateInputView() {
// Set custom theme to input view.
int themeLayout = sharedPreferences.getInt(THEME_KEY, R.layout.input_1);
mInputView = (LatinKeyboardView) getLayoutInflater().inflate(
themeLayout, null);
mInputView.setOnKeyboardActionListener(this);
// Close popup keyboard when screen is touched, if it's showing
mInputView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
mInputView.closing();
}
return false;
}
});
// Apply the selected keyboard to the input view.
setLatinKeyboard(getSelectedSubtype());
return mInputView;
}
对于子类型:创建qwerty.xml
的副本并对其进行编辑以替换密钥。在LatinKeyboard
中创建SoftKeyboard.java
的另一个实例,并使用if
或switch
逻辑。
private LatinKeyboard getSelectedSubtype() {
final InputMethodSubtype subtype = mInputMethodManager.getCurrentInputMethodSubtype();
String s = subtype.getLocale();
switch (s) {
case "ps_AF":
mActiveKeyboard = mPashtoKeyboard;
mCurKeyboard = mPashtoKeyboard;
break;
case "fa_AF":
mCurKeyboard = mFarsiKeyboard;
break;
default:
mCurKeyboard = mQwertyKeyboard;
}
return mCurKeyboard;
}
并修改methods.xml
以添加子类型:
<input-method xmlns:android="http://schemas.android.com/apk/res/android"
android:settingsActivity="com.sunzala.afghankeyboard.android.ImePreferences"
android:supportsSwitchingToNextInputMethod="true">
<subtype
android:imeSubtypeLocale="en_US"
android:imeSubtypeMode="keyboard"
android:label="@string/label_subtype_generic" />
<subtype
android:imeSubtypeLocale="ps_AF"
android:imeSubtypeMode="keyboard"
android:label="@string/label_subtype_generic" />
<subtype
android:imeSubtypeLocale="fa_AF"
android:imeSubtypeMode="keyboard"
android:label="@string/label_subtype_generic" />
</input-method>
对于表情符号:查找库并将其与键盘集成。表情符号将通过按键显示。
if (primaryCode == -10000) {
showEmoticons();
}
-10000
是键码。