键盘显示nextbutton,而我的xml中只有一个edittext

时间:2014-09-04 06:53:05

标签: android

嘿朋友我是Android的新手,我遇到了这个问题,我的xml中只有一个edittext但是当我调用键盘时有时它会在键盘上显示完成按钮,有时它显示下一个按钮,而我没有我的xml中的其他edittext,当它显示完成按钮并且我点击它时,每个东西都工作正常,当它显示下一个按钮而不是完成时,点击该应用程序因为空指针异常而崩溃,因为它不会得到任何其他编辑文本。这是我下面的xml

任何帮助将不胜感激。我有一个Android版4.1.2的手机

`

    <ImageView
        android:id="@+id/iconsearch"
        android:layout_width="20dp"
        android:layout_height="20dp"
        android:layout_centerVertical="true"
        android:layout_marginRight="3dp"
        android:layout_toLeftOf="@+id/edtSearchClubs"
        android:background="@drawable/search_icon" />

        <EditText
            android:id="@+id/edtSearchClubs"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:hint="Search clubs"
            android:background="@null"
            android:imeOptions="actionDone"
            android:layout_centerInParent="true"
            android:singleLine="true"
            android:textColor="@color/white"
            android:textSize="18sp" />

</RelativeLayout>`

0 个答案:

没有答案