第二节:点击事件的四种创建方法(一)

   先来看一下代码:

public class ClickActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_click);
        //1:获取按钮
        Button btn=(Button) findViewById(R.id.button1);
        //2:绑定点击事件
        btn.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View arg0) {
				System.out.println("我是按钮");
			}
		});
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.click, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }
}

 在安卓虚拟机中预览的效果如下图:

点击按钮后就会出现以下效果:

 

发布了8 篇原创文章 · 获赞 0 · 访问量 136

猜你喜欢

转载自blog.csdn.net/ZZ666666ZZ/article/details/104302044