android - EditText "ime" option is not working -


iam newbie android. started working edittext. had tried imeoption(imeoption ="actionsend") edittext cant find button showing send. had given "singleline=true" no use. can tel me solution?

here code

<edittext android:id="@+id/search"  android:layout_width="fill_parent"  android:layout_height="wrap_content"  android:layout_alignleft="@+id/postal_address"  android:layout_centervertical="true"  android:ems="10"  android:hint="@string/search_hint"  android:imeoptions="actionsend"  android:inputtype="text"  android:singleline="true" /> 

thanks in advance

check code , working me

  <edittext         android:id="@+id/password"         android:layout_width="wrap_content"         android:layout_height="70dp"         android:layout_alignleft="@+id/username"         android:layout_below="@+id/lineview"         android:singleline="true"         android:imeoptions="actiongo"         android:background="@android:color/transparent"         android:ems="10"         android:hint="@string/password"         android:inputtype="textpassword" /> 

Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -