i want to put \"Go\" button in android appliation softkeyboard
for search and other related scenarios can any one guide me how to achieve this? with example.
any
If your question is that you have an EditText or editable TextView, and you want the action right button on the softkeyboard to read "Go" then add this attribute to your EditText/TextView
android:imeActionLabel="actionGo"
note that it will also have to be a single line TextView as otherwise the action button will be a carriage return selector (an arrow).
android:singleLine="true"