Android ButtonOnClick事件的写法总结
程序员文章站
2023-10-27 17:58:34
android buttononclick事件的写法总结
假设layout里有三个button吧,id分别是 button_1 ,button_2 , button_3...
android buttononclick事件的写法总结
假设layout里有三个button吧,id分别是 button_1 ,button_2 , button_3
之前一直都知道有两种onclick写法:
button_1.setonclicklistener(new button.onclicklistener(){ public void onclick(view v) { //在这里添加点击事件 } });
第二种:
button_2.setonclicklistener(listener); button.onclicklistener listener = new button.onclicklistener(){ public void onclick(view v){ //在这里添加点击事件 } };
然后今天才知道有第三种,这与前两种方法截然不同,因为前两种都是用java语法来写的,而这种可能是android特色了。
public void whenclick(view view){ //在这里写你想做的事 }
然后在 layout 中给 button_3 添加一个属性: android:onclick="whenclick"
没错,只要写一个方法处理事件,然后把方法名告诉button就可以了,看起来屌屌的。。。
以上就是对android buttononclick 的总结,如有疑问请留言或者到本站社区叫,共同进步,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!