首页 > 代码库 > Android VIEW
Android VIEW
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); textView=(TextView)findViewById(R.id.textView); button=(Button)findViewById(R.id.button); //获取代表控件的对象 ButtonListener buttonlistenner=new ButtonListener(); //生成监听器对象 button.setOnClickListener(buttonlistenner); //为控件绑定监听器对象 } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } class ButtonListener implements OnClickListener{ //实现监听器接口 @Override public void onClick(View v) { count++; textView.setText(count+""); }
Android VIEW
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。