1

我扩展了 Android Sample SoftKeyboard 示例。这个扩展需要在键盘上方添加两个垂直的 AlphabetLinearLayouts(从 LinearLayout 扩展),除了 LatinKeyBoardView。LatinKeyboardView 是标准键盘。

当我从布局中删除这两个侧视图时,行为符合预期 - 在 EditText 内部进行选择会拉起软键盘,并且之前屏幕上的所有视图都向上移动。

通常当键盘纵向弹出时,屏幕上的任何内容都会移动到键盘上方,有效地将一些内容推离屏幕以为键盘腾出空间。

我认为因为我有这两个额外的垂直视图作为我的键盘的一部分,所以框架试图向上推送内容并失败,因为键盘视图占用了太多空间。

我试图弄清楚如何解决这个问题。最好的情况是以某种方式让我的垂直视图显示在原始内容之上,除了显示软键盘所需的内容之外没有进一步的位移。

我构造我的 KeyboardView 如下:

@Override public View onCreateInputView() {
  RelativeLayout outer = (RelativeLayout) getLayoutInflater().inflate(
        R.layout.input, null);
  // Set up keyboard view.
  mInputView = (LatinKeyboardView) outer.findViewById(R.id.keyboard);
  mInputView.setOnKeyboardActionListener(this);
  mInputView.setKeyboard(mQwertyKeyboard);
  // Maintain reference to APC.
  mAlphabetViewLeft = (AlphabetColumnLayout)outer.findViewById(R.id.alphabet_list_left);
  mAlphabetViewRight = (AlphabetColumnLayout)outer.findViewById(R.id.alphabet_list_right);

  // Set of references to handle touches.
  mAlphabetViewLeft.setTouchResolver(mTouchResolver);
  mAlphabetViewRight.setTouchResolver(mTouchResolver);

  return outer;
}

我的 input.xml 文件如下所示:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res/com.example.android.softkeyboard">

<com.example.android.softkeyboard.AlphabetColumnLayout
    android:id="@+id/alphabet_list_left"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_above="@+id/keyboard"
    android:orientation="vertical"
    app:available_letters="BGHIJKLMNOPUVY"/>

<com.example.android.softkeyboard.AlphabetColumnLayout
    android:id="@+id/alphabet_list_right"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_above="@+id/keyboard"
    android:orientation="vertical"
    app:available_letters="ACDEFQRSTWXZ"/>

<com.example.android.softkeyboard.LatinKeyboardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/keyboard"
    android:layout_alignParentBottom="true"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

</RelativeLayout>

最后,我使用以下代码设置了 AlphabetColumnLayouts。它的作用是在键盘上方屏幕的每一侧创建一堆字母(我上面提到的两个输入视图)。AlphabetTextView 是一个普通的 TextView,带有一些额外的东西来帮助我以我想要的方式解决触摸问题。char[] 字母使用 input.xml 中的 app:available_letters 样式实例化。

public void instantiateViews(char[] letters, int appSize) {
  Context context = mWeakContext.get();
  assertNotNull(context);

  // Set up layout params of parent based on the screen size available,
  // keeping XML-defined params.
  RelativeLayout.LayoutParams lp =
      (RelativeLayout.LayoutParams) getLayoutParams();
  if (lp == null) {
    lp = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT,
        RelativeLayout.LayoutParams.WRAP_CONTENT);
  }
  lp.height = appSize/2;
  Log.e(TAG, "LinearLayout = " + lp.debug(""));
  setLayoutParams(lp);

  // Set up the child TextViews.
  final int nLetters = letters.length;
  for (char c : letters) {
    AlphabetTextView tv = new AlphabetTextView(context, this);
    LinearLayout.LayoutParams tlp = new LinearLayout.LayoutParams(
      LinearLayout.LayoutParams.MATCH_PARENT,
      lp.height/nLetters);
    tv.setLayoutParams(tlp);
    //tv.setGravity(Gravity.CENTER);
    tv.setText(String.valueOf(c));
    tv.setTextSize(12);
    tv.setTypeface(Typeface.DEFAULT_BOLD);

    // Add child to Layout.
    addView(tv);
  }
  setOnTouchListener(this);
}

这是我发布的 Android Groups 问题的链接,并附有一些图片。

4

1 回答 1

1

你的描述不是很清楚。您实际上看到了什么是错误的?此外,您所描述的听起来像是您想创建自己的候选人版本?实施onCreateCandidateViews()不适合您的需求吗?

更新

看了截图,我现在明白你的意思了。

我认为你基本上是在痛苦的道路上。您创建的是一个KeyboardView大小为 that 的View,其高度包括那些TextView列(不足为奇)。应用程序如何与输入法交互并不取决于输入法,而是取决于应用程序本身。在这种情况下,消息应用程序似乎将其android:windowSoftInputMode设置为adjustResize(因此它“坐在”您KeyboardView跟随方向更改的顶部 - 我不知道为什么在您的输入法首次显示时它不会调整大小)。

此外,即使您确实设法让底层应用程序正常运行,您也会面临输入法问题可能会从应用程序本身窃取触摸事件(即您KeyboardView仍然是位于屏幕底部的矩形,无论那里有什么透明度。

从本质上讲,Android 的 IME 框架是为输入法设计的,它是一个单一的根视图,它粘贴在一个 中Dialog,并显示在屏幕底部。可能是最近的框架变化已经偏离了这一点;添加了一个新的Keyboardctor,它允许客户端指定宽度和高度,而不仅仅是假设Key尺寸百分比是屏幕宽度/高度。

无论如何,虽然它可能会做其他事情,只是 IME 必须做应用程序期望的事情,这是黄金法则,因为如果您的 IME 不与用户的应用程序互操作,那么他们将不会使用它。

于 2012-10-04T22:32:18.183 回答