Android EditText Link to Button

时间:2011-02-09 07:42:13

标签: android

不确定应该如何实施。我有一个带有编辑文本和按钮的活动(用于指定搜索参数的文本字段和用于执行搜索的按钮)。此时用户必须在该字段中输入文本,然后按“搜索”按钮。如何将该按钮设置为默认操作,或者有人将编辑文本字段配置为在用户按Enter键时单击该按钮?

目前使用默认行为时,当我选择该编辑文本字段时,虚拟键盘上没有显示返回键。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

在发布问题后不久找到了此文档项目。

 <EditText android:id="@+id/edtInput"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:inputType="textShortMessage|textAutoCorrect|textCapSentences|textMultiLine"
        android:imeOptions="actionSend|flagNoEnterAction"
        android:maxLines="4"
        android:maxLength="2000"
        android:hint="@string/compose_hint"/>

请参阅http://developer.android.com/resources/articles/on-screen-inputs.html