I am new to Android development and experiencing a strange problem.
I need to build a view programmatically that includes several elements including some buttons EditText controls.
It all works good except for one really bizarre issue:
When EditText widget does not occupy the full width of the screen (it is in a RelativeLayout), the soft keyboard does not pop-up when it is selected. When EditText widget occupies the full width of the screen (sans padding) when it is in a vertically-oriented LinearLayout then the soft keyboard works as expected: it pops up when EditText gains focus and hides when it loses focus.
I cannot find anything in the documentation that would explain this behavior. Have you ever seen anything like this?
I am developing for Android 2.2 if it helps.
Thank you.