I have an application with a EditText with the following properties:
<EditText
android:id="@+id/sendText"
android:layout_width="300dip"
android:layout_height="30dip"
android:textSize="8sp"
android:imeOptions="actionSend"
android:focusable="true"
android:hint="Message"
>
On my phone running Froyo, I get the "Send" action button in the keyboard, which android:imeOptions="actionSend"should do, but on my Xoom running Honeycomb, the keyboard gets no action button, and I cannot use the send action.
Was there a change in the API for honeycomb, or is there a bug? Or something else I'm missing.