I have a relativelayout that fills the screen in an activity. And I launch a softkeyboard with code like this:
((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE)).toggleSoftInput(InputMethodManager.SHOW_IMPLICIT,InputMethodManager.HIDE_NOT_ALWAYS);
It pops up on top of the RelativeLayout, instead of pushing the relativelayout up. Is there any way I can get the keyboard to do this? I tried adding android:windowSoftInputMode="adjustResize"
to my activity in the manifest but this did not help.