I am trying to make Hello World notepad app, and currently I have to click right on the cursor in my EditText to bring up the soft keyboard. I would like to be able to click anywhere in the EditText to show the keyboard.
Here is my EditText declaration in my layout:
<EditText
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="text" >
</EditText>
EDIT:
I am using the Galaxy Nexus emulator, and here is what I get:
I have to click in the area above the blue marker to get the keyboard.