Reputation:
I have to add some text during this activity and I want to show the default keyboard for the starting of one activity til the activity is finished.
So, What should I have to do?
Upvotes: 0
Views: 216
Reputation: 4142
In the AndroidManifest.xml set the android:windowSoftInputMode to "stateAlwaysVisible" for your activity. Reference, http://developer.android.com/guide/topics/manifest/activity-element.html.
Upvotes: 1