2013-03-05 3 views

답변

1

당신이 점에서 문제를 얻는 경우 다음 질문을 게시 자신의 뭔가를 시도해야 ... 어쨌든 여기 당신이 안드로이드의 기본적인이

Button buttonOne = (Button) findViewById(R.id.button1); 
buttonOne.setOnClickListener(new Button.OnClickListener() { 
    public void onClick(View v) { 
      EditText editText1 = (EditText) findViewById(R.id.textidinxml); 
     editText1.setText("Some text to show on edittext");      
    } 
}); 
관련 문제