Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my app, I need to use EditText. But i have a problem with it. On some firmwares (Ice cream sandwich for example) when user click on edittext, keyboard pushes whole screen up! I want to turn it off.

I tried to add android:windowSoftInputMode="adjustResize". Nothing changed.

Help me please.

share|improve this question
You want to turn it off... ?you mean you don't want keyboard to show? – raju Apr 25 '12 at 15:43

2 Answers

try

 android:windowSoftInputMode="adjustPan"

That perfect work for you.

share|improve this answer
adjustPan option is working good on 4.0 devices and not working in 2.3 devices – Software Sainath Jan 16 at 11:19

Add this in your AndroidManifest.xml

android:windowSoftInputMode="stateHidden"

Perfectly works for me. You try this one.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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