; 핸들러로 지연시키지 않으면 안 뜬다...이상해...

Handler keyPadHandler = new Handler();
            keyPadHandler.postDelayed(new Runnable() {
                public void run() {
                    if(mRecipientsEditor!= null){
                    if(mRecipientsEditor.getVisibility()== View.VISIBLE){
                        InputMethodManager inputMethodManager =
                            (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);       
                     inputMethodManager.showSoftInput(mRecipientsEditor, 0);
                    }
                    }
                }
            }, 100);

'old > sms&mms' 카테고리의 다른 글

SMS solicite_eclair  (0) 2010.07.22
Internals of Telephony subsystem  (0) 2010.07.09
The Radio Interface Layer (RIL)  (0) 2010.07.09
Android's Radio Interface Layer(RIL)  (0) 2010.07.08
Complete End to End Call Flow of Short Message Service(SMS)  (0) 2010.07.08
Posted by jazzlife
,