EditText 요청 포커스 로그인 페이지를 다음과 같이 디자인하고 있습니다. UserName: ..... Password: ..... LoginButton 활동이 시작되면 포커스가 "사용자 이름"텍스트 상자로 이동하고 키보드가 나타나기를 원합니다. 다음 코드를 사용하고 있습니다. boolean checkFocus=user.requestFocus(); Log.i("CheckFocus", ""+checkFocus); if(checkFocus==true) { InputMethodManager mgr = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); mgr.showSoftInput(user, InputMethodManager.SHOW..