화면 띄웠을때 edit text가 있으면 거기에 focus가 안가있는데요 (마치 아무클릭 안한 상태처럼)

첨에 화면띄웠을때 editText에 focus가 가게 할 수 있는 방법이 뭐가 있는지 아시는분 좀 알려주세요~~

setFocusable(true)를 하니깐 아무일도 안생기더라구요.

et.setFocusable(true);
et.setFocusableInTouchMode(true);
et.setSelection(0, et.length());
et.focusSearch(0);

해도 첨에 실행하면 선택되지 않습니다(오렌지색 테투리로 포커싱되지 않습니다.)

답변좀 부탁드립니다