본문 바로가기
  • fishing...
  • eating...
MISCELLANEOUSNESS

Android EditText 키보드 보이기.

by 회색뿔 2011. 1. 9.




	public void onCreate(Bundle savedInstanceState) {	    
		super.onCreate(savedInstanceState);	
		setContentView(R.layout.page);
		context = this;	   	    
		passText = (EditText)findViewById(R.id.c_passEdit);	  	   	    	  
		passText.requestFocus();	    	 
		Timer timer = new Timer();	 
		timer.schedule( new TimerTask() {		
			@Override			
			public void run() {		
				// TODO Auto-generated method stub		
				InputMethodManager m = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);		
				m.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);			
				}}, 1000);	
			}
		}

Activity가 실행되면 자동으로 edittext를 지정하고 소프트 키보드가 올라온다.
입력하면 지정한 edittext에 입력이 된다.