Skip to content

Instantly share code, notes, and snippets.

@myamamic
Created December 12, 2012 07:54
Show Gist options
  • Select an option

  • Save myamamic/4265927 to your computer and use it in GitHub Desktop.

Select an option

Save myamamic/4265927 to your computer and use it in GitHub Desktop.
[Java][Android] EditTextなどにがフォーカスが当たっている時に、ソフトキーボードを表示しない
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
this.getWindow().setSoftInputMode(LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment