I have SherlockFragmentActivity and SherlockFragment which is inside the TabManager. In this snippet, I have RadioButtons, CheckBoxes, Button, and EditText in LinearLayout. The keyboard sometimes does not respond when you click on EditText.
In 2.1 AVD, the keyboard reacts inconsistently, in 4.0 AVD the keyboard does not respond at all, and on the device the keyboard reacts inconsistently. Sometimes pressing other objects activates the ability to display the keyboard.
Here is the XML for EditText:
<EditText android:id="@+id/EditText1" android:layout_width="100dp" android:layout_height="wrap_content" android:inputType="number" android:text="20" >
I am more confused by incompatible activities than the fact that it does not work with 4.0 AVD. Any suggestions on why this is happening, or a way to show the keyboard, would be great.
source share