2011-09-30 17 views

답변

9

이 줄을 따라 가야합니다.

EditText.setOnFocusChangeListener(new View.OnFocusChangeListener() 
{ 
    @override 
    public void onFocusChange(View v, boolean hasFocus) 
    { 
     if (!hasFocus) { 
      string value = (EditText) v.getText().ToString(); 
     } 
    } 
}