セクションII:クリックイベントを作成するための方法は4種類(A)

   コードを初めて目:

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