액티비티에 editText를 사용하면

액티비티가 실행될 때 자동으로 editText가 포커싱 되면서

키보드가 자동으로 올라오게 된다.  

너무 보기안좋았다....


/////////////////////////////////////


해결방법


<activity

            android:name=".call.CallActivity"

            android:windowSoftInputMode="stateAlwaysHidden"

            android:screenOrientation="portrait" 

/>


요렇게 AndroidManifest.xml 에서  android:windowSoftInputMode="stateAlwaysHidden" 를 

액티비티 속성에 넣어주면 해당 엑티비티에서는 실행할때 에디트텍스트가 있어도 

키보드를 띄우지 않게된다. (그래도 포커싱은 된다)


다른방법으로는 강제로 다른 뷰에 포커싱을 줘버리면 된다.

+ Recent posts