2011-02-09 153 views
0

不知道這應該如何實現。我有一個使用編輯文本和按鈕(指定搜索參數的文本字段,以及執行搜索的按鈕)的活動。現在,用戶必須在字段中輸入文本,然後按搜索按鈕。如何使該按鈕成爲默認操作,或者有人配置編輯文本字段以在用戶按下Enter鍵時單擊該按鈕?Android EditText鏈接到按鈕

當前使用默認行爲,當我選擇該編輯文本字段時,虛擬鍵盤上沒有顯示返回鍵。

任何想法?

回答

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