onclicklistener 는 도대체 어떻게 사용 합 니까?

전송 주소:http://blog.csdn.net/dickren123/article/details/7216975
저 와 같은 초보 자 들 이 ANDROID 개발 을 배우 면 이 문제 에 부 딪 힐 것 이 라 고 믿 습 니 다. 요 며칠 동안 의 분류 와 정 리 를 통 해 제 이 해 를 아래 에 쓰 고 여러분 들 이 함께 토론 하 러 오신 것 을 환영 합 니 다.
버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼 버튼
1. 인터페이스 계승 버튼 으로 감청 방법:
package dickren123.hui.say_hello_to_world;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
/*                BUTTON ,             BUTTON  */
public class Hello_to_worldActivity extends Activity implements Button.OnClickListener{
/** Called when the activity is first created. */
private Button btn_say_hello;
private TextView hello_world;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
btn_say_hello = (Button)findViewById(R.id.bnt_SAY_HELLO_TO_WORLD);
hello_world = (TextView)findViewById(R.id.textView1);
btn_say_hello.setOnClickListener(this) ;//       BUTTON   ,
} //                   
public void onClick(View v) {
// TODO Auto-generated method stub
hello_world.setText("dickren123!");//            
}
}

2. 인터페이스 로 view 류 의 감청 을 계승 하 는 방법
package dickren123.hui.say_hello_to_world;


import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;/*          view   */
import android.widget.Button;
import android.widget.TextView;


public class Hello_to_worldActivity extends Activity implements OnClickListener{
    /** Called when the activity is first created. */
private Button btn_say_hello;
private TextView hello_world;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        btn_say_hello = (Button)findViewById(R.id.bnt_SAY_HELLO_TO_WORLD);
        hello_world = (TextView)findViewById(R.id.textView1);
        btn_say_hello.setOnClickListener(this) ;//       view   ,
    } //                   
public void onClick(View v) {
// TODO Auto-generated method stub
hello_world.setText("dickren123!");//            
}
}

3. 인 터 페 이 스 를 사용 하지 않 고 클래스 내부 에서 직접 감청 을 실현 한다.
package dickren123.hui.say_hello_to_world;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class Hello_to_worldActivity extends Activity {
/** Called when the activity is first created. */
private Button btn_say_hello;
private TextView hello_world;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
btn_say_hello = (Button)findViewById(R.id.bnt_SAY_HELLO_TO_WORLD);
hello_world = (TextView)findViewById(R.id.textView1);
btn_say_hello.setOnClickListener(new Button.OnClickListener(){
public void onClick(View v) { //     Button  
// TODO Auto-generated method stub
hello_world.setText("dickren123!");//            
}
}) ;
} 
}

익명 인 스 턴 스 를 사용 하지 않 으 면 구체 적 인 인 인 스 턴 스 를 정의 할 수 있 습 니 다. 다음 과 같 습 니 다.
package dickren123.hui.say_hello_to_world;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class Hello_to_worldActivity extends Activity {
/** Called when the activity is first created. */
private Button btn_say_hello;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
btn_say_hello = (Button)findViewById(R.id.bnt_SAY_HELLO_TO_WORLD);
btn_listener bl = new btn_listener();
btn_say_hello.setOnClickListener(bl); //bl  btn_listener   , btn_listener        
} //                   
}
class btn_listener implements Button.OnClickListener
{
public void onClick(View v) {
// TODO Auto-generated method stub

}
}

많은 소통 부탁드립니다! ^ ^

좋은 웹페이지 즐겨찾기