user1226738
user1226738

Reputation:

Default keyboard in android

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

Answers (1)

Matt Accola
Matt Accola

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

Related Questions