Android 키보드 이벤트(Show/Hide)에 대해 알아보자 @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mLlEdit = (LinearLayout) findViewById(R.id.ll_edit); InputMethodManager controlManager = (InputMethodManager) getSystemService(Service.INPUT_METHOD_SERVICE); mSoftKeyboard = new SoftKeyboard(mLlEdit, controlManager); mSoftK..