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
Post a Comment