CS453 | mobile programming
  • outline
  • projects
  • syllabus
  • links

Android: Hide Keyboard when focus on Edit Text

A little trick -- sometime you want to focus on an EditText but, not have the keyboard show.....add teh android:windowSoftInputMode="stateHidden" to the activity in the manifest file.

 

<activity

android:label="@string/app_name"
android:name=".LayoutsAcrivity"
android:windowSoftInputMode="stateHidden">

 

 

 

 

cs453:mobile programming

  • home
  • outline
  • projects
  • syllabus
  • links