键盘上方的黑线

时间:2014-09-03 17:25:43

标签: android android-layout

有人知道如何避免键盘上方的这条黑线?它变成我的键盘显示预测字线后。

Line with help words

Line after help words

在我的图层中,我使用了片段,我需要在下面使用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>

抱歉我的英文。

2 个答案:

答案 0 :(得分:2)

为了避免键盘出现黑线,您应该将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"/>

答案 1 :(得分:0)

这看起来像它的实际安卓键盘..这不是要改变的东西。