I have an EditText widget in my main activity. when the EditText widget get the focus, the soft key board displays, when the EditText widget loses the focus. However, I want to display the soft key board all the time, until the main activity is Destroy. How to do this ?

link|improve this question

43% accept rate
Have you tried to do it yourself? Nobody will write a code snippet here for you. Try it yourself, if you'll got error then paste your code snippet along with logs here. – Yuvi Feb 7 at 7:06
Show me your xml. – debarati Feb 8 at 7:18
feedback

2 Answers

You can do that by adding following to activity tag in your manifest file

 android:windowSoftInputMode="stateAlwaysVisible" 
link|improve this answer
feedback

//To show softkeyboard

((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE))
                .showSoftInput(editText, 0);

//try this

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_‌​VISIBLE);
link|improve this answer
But the soft key board will disappear, when the edit text loses focus – user1184113 Feb 7 at 7:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.