I have an activity with an Edit Text input. When the activity is initialized, the Android keyboard is shown. How can the keyboard remain hidden until the user
Edit Text
Add these two properties to your parent layout (ex: Linear Layout, Relative Layout)
android:focusable="false" android:focusableInTouchMode="false"
It will do the trick :)