gpt4 book ai didi

android - 键盘上方的黑线

转载 作者:行者123 更新时间:2023-11-29 00:17:23 29 4
gpt4 key购买 nike

有人知道如何避免键盘上方的这条黑线吗?在我的键盘显示预测词行之后就变成了。

Line with help words

Line after help words

在我的图层中,我使用了 fragment ,我需要在下方显示带有 EditText 的行。但是当用户结束打字时,他看到键盘上方的黑线是不需要的

这是我的代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>

<!-- TODO: Update blank fragment layout -->
<FrameLayout
android:layout_width="match_parent"

android:layout_height="0dp"
android:layout_weight="1"

android:id="@+id/word_set_fragment_container"
>

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Experimental layer"
/>


</FrameLayout>

<LinearLayout

android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@drawable/border"

android:paddingTop="5dp"
android:paddingBottom="3dp"
android:clickable="true"
>
<Button

android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="⇣"
android:layout_gravity="bottom"/>
<EditText

android:inputType="text|textCapSentences"
android:imeOptions="actionDone"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:hint="@string/hint_new_word"
android:text=""
/>
</LinearLayout>

</LinearLayout>

对不起我的英语。

最佳答案

为了避免键盘出现黑线,您应该将 layout_margin="0px"android:padding="0px" 添加到您的键盘布局 xml 文件

<android.inputmethodservice.KeyboardView
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_margin="0px"
android:padding="0px"
android:layout_alignParentBottom="true"
android:keyPreviewLayout ="@layout/preview"/>

关于android - 键盘上方的黑线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25650280/

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