gpt4 book ai didi

android - 自定义软键盘 View 显示不正确

转载 作者:行者123 更新时间:2023-11-30 03:59:34 25 4
gpt4 key购买 nike

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

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

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

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

我正在尝试找出解决此问题的方法。最好的情况是以某种方式让我的垂直 View 显示在原始内容之上,除了显示软键盘所需的内容之外没有进一步的位移。

我按如下方式构造我的 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。它的作用是在键盘上方的屏幕两侧创建一堆字母(我上面提到的两个输入 View )。 AlphabetTextView 是一个普通的 TextView,带有一些额外的东西来帮助我以我想要的方式解决触摸问题。 char[] letters 使用 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);
}

这是 a link我用一些附加图片发布的 Android Groups 问题。

最佳答案

您的描述不是很清楚。您实际上看到了什么是错误的?此外,您的描述听起来像是您想要创建自己的候选人版本?实现 onCreateCandidateViews() 是否满足您的需求?

更新

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

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

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

从本质上讲,Android 的 IME 框架适用于将输入法作为单个 Root View ,它固定在 Dialog 中,并显示在屏幕底部。可能最近的框架变化已经偏离了这一点;添加了一个新的 Keyboard 构造器,它允许客户端指定宽度和高度,而不是仅仅假设 Key 大小百分比是屏幕宽度/高度。

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

关于android - 自定义软键盘 View 显示不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12718602/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com